aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/IO/FileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-01 15:25:12 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-01 15:25:12 -0400
commit2da4ef2a01093c7f3f05530ec5da5b606f1989ba (patch)
treee4104a04c2dfd014eda356b515a9f6fee4f06146 /MediaBrowser.Controller/IO/FileSystem.cs
parent8f002964fbc9b49030630c5c0045b1254e3740da (diff)
limit knowledge of lnk files
Diffstat (limited to 'MediaBrowser.Controller/IO/FileSystem.cs')
-rw-r--r--MediaBrowser.Controller/IO/FileSystem.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/IO/FileSystem.cs b/MediaBrowser.Controller/IO/FileSystem.cs
index 0879ea8a4..56b1be6b5 100644
--- a/MediaBrowser.Controller/IO/FileSystem.cs
+++ b/MediaBrowser.Controller/IO/FileSystem.cs
@@ -247,7 +247,10 @@ namespace MediaBrowser.Controller.IO
}
}
- public class WindowsShortcut
+ /// <summary>
+ /// Adapted from http://stackoverflow.com/questions/309495/windows-shortcut-lnk-parser-in-java
+ /// </summary>
+ internal class WindowsShortcut
{
public bool IsDirectory { get; private set; }
public bool IsLocal { get; private set; }