Example #1
0
 /// <summary>
 /// Gets the metadata for the given file or folder
 /// </summary>
 /// <returns>The metadata for the given file or folder</returns>
 /// <param name="file">The file or folder to examine</param>
 public override Dictionary <string, string> GetMetadata(string file)
 {
     return(m_sysIO.GetMetadata(file));
 }
Example #2
0
 /// <summary>
 /// Gets the metadata for the given file or folder
 /// </summary>
 /// <returns>The metadata for the given file or folder</returns>
 /// <param name="file">The file or folder to examine</param>
 /// <param name="isSymlink">A flag indicating if the target is a symlink</param>
 /// <param name="followSymlink">A flag indicating if a symlink should be followed</param>
 public override Dictionary <string, string> GetMetadata(string file, bool isSymlink, bool followSymlink)
 {
     return(m_sysIO.GetMetadata(file, isSymlink, followSymlink));
 }
Example #3
0
 /// <summary>
 /// Gets the metadata for the given file or folder
 /// </summary>
 /// <returns>The metadata for the given file or folder</returns>
 /// <param name="localPath">The file or folder to examine</param>
 /// <param name="isSymlink">A flag indicating if the target is a symlink</param>
 /// <param name="followSymlink">A flag indicating if a symlink should be followed</param>
 public override Dictionary <string, string> GetMetadata(string localPath, bool isSymlink, bool followSymlink)
 {
     return(IO_WIN.GetMetadata(ConvertToSnapshotPath(localPath), isSymlink, followSymlink));
 }