• 自动生成当天日期的文件夹


    namespace 自动生成当天文档
    {
        class Program
        {
            string Paths = "";
            static void Main(string[] args)
            {
                string root = @"D:2";
                DirectoryInfo Path = Directory.CreateDirectory(root + "\" + DateTime.Now.ToString("yyyyMMddHHmmss"));
                string Paths = Path.FullName;
                // Test(@"D:2");//创建文件夹
                // Specify the directories you want to manipulate.
                string path = @"c:MyDir";
                string target = @"c:TestDir";
                try
                {
                    // Determine whether the directory exists.
                    if(!Directory.Exists(path))
                    {
                        // Create the directory it does not exist.
                        Directory.CreateDirectory(path);
                    }
                    if(Directory.Exists(target))
                    {
                        // Delete the target to ensure it is not there.
                        Directory.Delete(target, true);
                    }
                    // Move the directory.
                    Directory.Move(path, target);
                    // Create a file in the directory.
                    File.CreateText(target + @"myfile.txt");
                    // Count the files in the target directory.
                    Console.WriteLine("The number of files in {0} is {1}", target, Directory.GetFiles(target).Length);
                }
                catch(Exception e)
                {
                    Console.WriteLine("The process failed: {0}", e.ToString());
                }
                finally
                {}
            }
            public static void Test(string root)
            {
                DirectoryInfo path = Directory.CreateDirectory(root + "\" + DateTime.Now.ToString("yyyyMMddHHmmss"));
                string Paths = path.FullName;
            }
        }
    }
  • 相关阅读:
    前端 一——介绍
    python知识点拾遗
    python 五——自定义线程池
    python 四——线程、进程、协程
    python 三——列表、字典、元祖、字符串、set
    动态规划法求解0-1背包
    贪心法求解背包问题
    学生成绩管理系统
    [C语言练习]学生学籍管理系统
    [C语言练习]万年历加强版
  • 原文地址:https://www.cnblogs.com/ZkbFighting/p/7663543.html
Copyright © 2020-2023  润新知