| FileSystemStorage Constructor (String) |
Initializes a new instance of the
FileSystemStorage class using the specified
directory as the root directory.
Namespace: DigitalRune.StoragesAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public FileSystemStorage(
string rootDirectory
)
Public Sub New (
rootDirectory As String
)
public:
FileSystemStorage(
String^ rootDirectory
)
new :
rootDirectory : string -> FileSystemStorage
Parameters
- rootDirectory
- Type: SystemString
The root directory specified relative to the current working directory or as an absolute
path. Can be or "" to select the current working directory. The path
is evaluated in the constructor, i.e. changing the current working directory later on does
not affect the FileSystemStorage.
See Also