diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-25 17:52:49 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-25 17:52:49 +0200 |
| commit | 9277bbd2fa070c69b83904f8fe5628fab2b947b8 (patch) | |
| tree | 3099f9ce92f04c28517eb13938e913a1e376b3fe /Software/Visual_Studio/Tango.Explorer/ExplorerFileItem.cs | |
| parent | f779e2b6f0bb1dedc7644c64651b59e31ce62c00 (diff) | |
| download | Tango-9277bbd2fa070c69b83904f8fe5628fab2b947b8.tar.gz Tango-9277bbd2fa070c69b83904f8fe5628fab2b947b8.zip | |
Working on job export import to storage.
Diffstat (limited to 'Software/Visual_Studio/Tango.Explorer/ExplorerFileItem.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Explorer/ExplorerFileItem.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Explorer/ExplorerFileItem.cs b/Software/Visual_Studio/Tango.Explorer/ExplorerFileItem.cs index 6340ea848..046b7a740 100644 --- a/Software/Visual_Studio/Tango.Explorer/ExplorerFileItem.cs +++ b/Software/Visual_Studio/Tango.Explorer/ExplorerFileItem.cs @@ -23,5 +23,13 @@ namespace Tango.Explorer return fileItem; } + + /// <summary> + /// Gets the file extension. + /// </summary> + public String Extension + { + get { return System.IO.Path.GetExtension(Path).ToLower(); } + } } } |
