VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Data Namespace / FileManager Class / CloseFile(String,FileAccess,FileStream) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
    CloseFile(String,FileAccess,FileStream) Method (FileManager)
    In This Topic
    Unlocks file after the file is closed.
    Syntax
    'Declaration
    
    Public Shared Sub CloseFile( _
    ByVal filename
    An absolute path to a file.
    As System.String, _
    ByVal access
    A constant that defines how the file can be accessed.
    As System.IO.FileAccess, _
    ByVal stream
    Stream to close.
    As System.IO.FileStream _
    )
    public static void CloseFile(
    System.String filename,
    System.IO.FileAccess access,
    System.IO.FileStream stream
    )
    public: static void CloseFile(
    System.String filename,
    System.IO.FileAccess access,
    System.IO.FileStream* stream
    )
    public:
    static void CloseFile(
    System.String filename,
    System.IO.FileAccess access,
    System.IO.FileStream^ stream
    )

    Parameters

    filename
    An absolute path to a file.
    access
    A constant that defines how the file can be accessed.
    stream
    Stream to close.
    Exceptions
    ExceptionDescription
    Thrown if file is not unlocked.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also