aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/IO/FileSystemMetadata.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-04 00:23:11 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-04 00:23:11 -0400
commit078277ebc29bd749045e5d109024d9d08aa8edea (patch)
tree9d47f711b41522ac0b58519cb3fa838f9d4f1fd7 /MediaBrowser.Common/IO/FileSystemMetadata.cs
parent8ad702060ea31a3862598056509a2597f6a2b639 (diff)
continue file system rework
Diffstat (limited to 'MediaBrowser.Common/IO/FileSystemMetadata.cs')
-rw-r--r--MediaBrowser.Common/IO/FileSystemMetadata.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/MediaBrowser.Common/IO/FileSystemMetadata.cs b/MediaBrowser.Common/IO/FileSystemMetadata.cs
deleted file mode 100644
index ba8a1b8b8..000000000
--- a/MediaBrowser.Common/IO/FileSystemMetadata.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace MediaBrowser.Common.IO
-{
- public class FileSystemMetadata
- {
- public FileAttributes Attributes { get; set; }
-
- public bool Exists { get; set; }
- public string FullName { get; set; }
- public string Name { get; set; }
- public string Extension { get; set; }
- public long Length { get; set; }
- public string DirectoryName { get; set; }
-
- public DateTime LastWriteTimeUtc { get; set; }
- public DateTime CreationTimeUtc { get; set; }
-
- public bool IsDirectory
- {
- get
- {
- return (Attributes & FileAttributes.Directory) == FileAttributes.Directory;
- }
- }
- }
-}