我们有一个将文件上传到我们网站的流程。用户能够看到创建这些文件的时间变得很重要。我正在寻找一种从HttpPostedFile中提取原始创建日期的方法。如果有人对我有所了解,我会非常感激(我现在有点难过)。
答案 0 :(得分:3)
您无权访问在客户端上创建文件的日期。您可以使用Fiddler来验证这一点。我相信你会看到的唯一数据是文件名和mime类型。
答案 1 :(得分:1)
这是我最终解决的问题。上传文件并将其保存到服务器后,您可以访问文件中的元数据(但是,此解决方案目前仅适用于图像文件 - 还有一些额外的代码可用于显示整个元数据文件,如果需要,我发现在我周围的元数据中形成了一些奇怪的日期,可能会更干净)......
System.IO.FileInfo fileInfo = new System.IO.FileInfo(UPLOAD_DIRECTORY + file.FileName);
if (!fileInfo.Exists)
{
break;
}
else
{
//Check for metadata original create date
if (_imageFormats.Contains(fileInfo.Extension.ToLower()))
{
Stream fileStream = fileInfo.OpenRead();
System.Drawing.Image image = new System.Drawing.Bitmap(fileStream);
// Get the PropertyItems property from image.
System.Drawing.Imaging.PropertyItem[] propItems = image.PropertyItems;
// For each PropertyItem in the array, display the ID, type, and
// length.
int count = 0;
string s1 = null;
string dateID = null;
foreach (System.Drawing.Imaging.PropertyItem propItem in propItems)
{
s1 += "Property Item " + count.ToString() + "/n/r";
s1 += "iD: 0x" + propItem.Id.ToString("x") + "/n/r";
if (("0x" + propItem.Id.ToString("x")) == PROPERTYTAGEXIFDTORIG)
{
dateID = count.ToString();
}
s1 += "type: " + propItem.Type.ToString() + "/n/r";
s1 += "length: " + propItem.Len.ToString() + " bytes" + "/n/r";
count++;
}
// Convert the value of the second property to a string, and display
// it.
System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
if (dateID != null)
{
string date = encoding.GetString(propItems[int.Parse(dateID)].Value);
date = date.Replace("\0", string.Empty);
string[] datesplit = date.Split(' ');
string newDate = datesplit[0].Replace(":", "-") + " " + datesplit[1];
originalCreateDate = DateTime.Parse(newDate);
}
fileStream.Close();
}
答案 2 :(得分:0)
我尝试过Bryon上面提到的方法,但它给了我错误的日期。即1600年左右的事情。
但是,您可以通过FileUpload控件的files属性从'lastModifiedDate'属性获取每个(将要)上传文件的日期。
以下是HTML / Javascript示例。 我把它从以下:
http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_fileupload_files 并根据我们的需要对其进行了修改。注意:请在此HTML / Javascript代码段之后阅读下面的评论。
<!DOCTYPE html>
<html>
<body onload="myFunction()">
<input type="file" id="myFile" multiple size="50" onchange="myFunction()">
<p id="demo"></p>
<script>
function myFunction(){
var x = document.getElementById("myFile");
var txt = "";
if ('files' in myFile) {
if (x.files.length == 0) {
txt = "Select one or more files.";
} else {
for (var i = 0; i < x.files.length; i++) {
txt += "<br><strong>" + (i+1) + ". file</strong><br>";
var file = x.files[i];
if ('name' in file) {
txt += "name: " + file.name + "<br>";
}
if ('size' in file) {
txt += "size: " + file.size + " bytes <br>";
}
if ('lastModifiedDate' in file) {
txt += "lastModifiedDate: " + file.lastModifiedDate.toString();
}
}
}
}
else {
if (x.value == "") {
txt += "Select one or more files.";
} else {
txt += "The files property is not supported by your browser!";
txt += "<br>The path of the selected file: " + x.value; // If the browser does not support the files property, it will return the path of the selected file instead.
}
}
document.getElementById("demo").innerHTML = txt;
}
</script>
<p><strong>Tip:</strong> Use the Control or the Shift key to select multiple files.</p>
</body>
</html>
例如,您可以使用jQuery文件上传控件将此信息作为附加参数传递。 以下是证明这一点的链接:
答案 3 :(得分:-1)
您只需从HttpPostedFile :: FileName获取文件系统创建日期。
像这样:
HttpFileCollection MyFileColl = Request.Files;
HttpPostedFile MyPostedFile = MyFileColl.Get(0);
String filename = MyPostedFile.FileName;
String creationTime;
if (File.Exists(fileName))
{
creationTime = File.GetCreationTime(fileName).ToString();
}
System.writeLine(creationTime);