Jas*_*uli 9 .net c# video extract
我需要使用C#从"Media Created"列中提取日期(在下面的示例照片中以绿色突出显示).
在我的示例中,"Media Created"和"Date"列完全相同.但是,有几种情况并非如此."媒体创建"列包含实际录制视频的正确日期.

这是我用来获得它的功能.感谢Aziz指出我正确的方向:
Shell shell = new ShellClass();
Folder folder = shell.NameSpace(_File.DirectoryName);
FolderItem file = folder.ParseName(_File.Name);
// These are the characters that are not allowing me to parse into a DateTime
char[] charactersToRemove = new char[] {
(char)8206,
(char)8207
};
// Getting the "Media Created" label (don't really need this, but what the heck)
string name = folder.GetDetailsOf(null, 191);
// Getting the "Media Created" value as a string
string value = folder.GetDetailsOf(file, 191).Trim();
// Removing the suspect characters
foreach (char c in charactersToRemove)
value = value.Replace((c).ToString(), "").Trim();
// If the value string is empty, return DateTime.MinValue, otherwise return the "Media Created" date
return value == string.Empty ? DateTime.MinValue : DateTime.Parse(value);
Run Code Online (Sandbox Code Playgroud)
还有另一种检索数据的方法,即使用Microsoft.WindowsAPICodePack.Shell命名空间。
ShellObject shell = ShellObject.FromParsingName(path);
var data = shell.Properties.System.Media.DateEncoded;
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3077 次 |
| 最近记录: |