implements the file moves ui
This commit is contained in:
parent
f13e1592a3
commit
5692478b77
7 changed files with 351 additions and 172 deletions
|
|
@ -60,6 +60,12 @@ namespace Yavsc.Helpers
|
|||
UserDirectoryInfo di = new UserDirectoryInfo(UserFilesDirName, userName, subdir);
|
||||
return di;
|
||||
}
|
||||
public static bool IsRegularFile(string userName, string subdir)
|
||||
{
|
||||
FileInfo fi = new FileInfo( Path.Combine(Path.Combine(UserFilesDirName, userName), subdir));
|
||||
return fi.Exists;
|
||||
}
|
||||
|
||||
|
||||
// Server side only supports POSIX file systems
|
||||
public const char RemoteDirectorySeparator = '/';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue