/// <summary> /// Returns a <see cref="FileSystemMetadata"/> object for the specified file path. /// </summary> /// <param name="path">A path to a file.</param> /// <returns>A <see cref="FileSystemMetadata"/> object.</returns> /// <remarks><para>If the specified path points to a directory, the returned <see cref="FileSystemMetadata"/> object's /// <see cref="FileSystemMetadata.IsDirectory"/> property and the <see cref="FileSystemMetadata.Exists"/> property will both be set to false.</para> /// <para>For automatic handling of files <b>and</b> directories, use <see cref="GetFileSystemInfo"/>.</para></remarks> public FileSystemMetadata GetFileInfo(string path) { if (string.IsNullOrEmpty(path)) { throw new ArgumentNullException("path"); } if (_sharpCifsFileSystem.IsEnabledForPath(path)) { return(_sharpCifsFileSystem.GetFileInfo(path)); } var fileInfo = new FileInfo(path); return(GetFileSystemMetadata(fileInfo)); }