for code which has been ported to accept an IFileSystemContainer but expects something like a Folder which has a name
This commit is contained in:
parent
2a64d6a799
commit
fbcdf24976
@ -127,6 +127,7 @@ namespace UniversalEditor.ObjectModels.FileSystem
|
||||
/// The title associated with this file system. Not supported by all <see cref="DataFormat" />s.
|
||||
/// </summary>
|
||||
public string Title { get; set; } = String.Empty;
|
||||
public string Name { get; set; } = String.Empty;
|
||||
|
||||
private string[] mvarPathSeparators = new string[] { "/", "\\" }; // System.IO.Path.DirectorySeparatorChar.ToString(), System.IO.Path.AltDirectorySeparatorChar.ToString() };
|
||||
public string[] PathSeparators { get { return mvarPathSeparators; } set { mvarPathSeparators = value; } }
|
||||
|
||||
@ -33,5 +33,6 @@ namespace UniversalEditor.ObjectModels.FileSystem
|
||||
File AddFile(string name, byte[] fileData = null);
|
||||
|
||||
FileSystemObjectModel FileSystem { get; }
|
||||
string Name { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user