如何在云文件中修改文件的日期?

时间:2015-11-06 19:21:52

标签: c# cloudfiles

如何在云文件中修改文件的日期?

我正在使用云文件中的.net SDK(而非机架空间nu get包)。

我可以获取我的文件列表并调用GetStorageItemInformation大小,但我想知道文件放在云文件上的时间。如果我使用Cloudberry浏览器应用程序,我会看到它有信息。

是否在.net SDK中?

1 个答案:

答案 0 :(得分:1)

当迭代容器中的文件时,可以使用OpenStack.NET的ContainerObject.LastModified。这是一个控制台应用程序,它列出了区域中的所有容器及其带有上次修改时间戳的文件。

using System;
using net.openstack.Core.Domain;
using net.openstack.Providers.Rackspace;

namespace CloudFilesDateModified
{
    class Program
    {
        static void Main(string[] args)
        {
            const string region = "DFW";
            var identity = new CloudIdentity { Username = "username", APIKey = "apikey" };

            var cloudfiles = new CloudFilesProvider(identity);
            foreach (Container container in cloudfiles.ListContainers(region:region))
            {
                Console.WriteLine($"Container: {container.Name}");

                foreach (ContainerObject file in cloudfiles.ListObjects(container.Name, region: region))
                {
                    Console.WriteLine($"\t{file.Name} - {file.LastModified}");
                }
            }

            Console.ReadLine();

        }
    }
}

以下是一些示例输出

Container: test
    foobar - 10/12/2015 2:00:26 PM -06:00
    foobar/file.png - 11/6/2015 7:34:42 PM -06:00
    foobar/index.html - 11/6/2015 7:34:31 PM -06:00

如果您的容器有超过10,000个文件,则需要使用分页参数来遍历所有文件。在下面的示例中,我一次分析结果100。

foreach (Container container in cloudfiles.ListContainers(region: region))
{
    Console.WriteLine($"Container: {container.Name}");

    int limit = 100;
    string lastFileName = null;
    IEnumerable<ContainerObject> results;
    do
    {
        results = cloudfiles.ListObjects(container.Name, region: region, limit: limit, marker: lastFileName);
        foreach (ContainerObject file in results)
        {
            Console.WriteLine($"\t{file.Name} - {file.LastModified}");
            lastFileName = file.Name;
        }
    } while (results.Any());
}