Questions tagged «directory»

目录或文件夹是数字文件系统中的虚拟容器,可以在其中保存和组织计算机文件组和其他目录。


18
创建文件夹(如果尚不存在)
我在使用Bluehost进行WordPress安装时遇到了一些情况,由于没有上传文件夹,我的WordPress主题遇到了错误wp-content/uploads。 显然,尽管HostGator可以,Bluehost cPanel WordPress安装程序不会创建此文件夹。 因此,我需要向主题添加代码,以检查文件夹并以其他方式创建该文件夹。
642 php  wordpress  directory 

18
从父文件夹导入模块
我正在运行Python 2.5。 这是我的文件夹树: ptdraft/ nib.py simulations/ life/ life.py (我还在__init__.py每个文件夹中,为便于阅读,在此省略) 如何nib从模块内部导入life模块?我希望无需修补sys.path就可以做到。 注意:正在运行的主模块在ptdraft文件夹中。







22
复制C#中目录的全部内容
我想在C#中将目录的全部内容从一个位置复制到另一个位置。 似乎没有一种方法可以在System.IO没有大量递归的情况下使用类。 如果添加对以下内容的引用,则VB中可以使用一种方法Microsoft.VisualBasic: new Microsoft.VisualBasic.Devices.Computer(). FileSystem.CopyDirectory( sourceFolder, outputFolder ); 这似乎是一个非常丑陋的hack。有没有更好的办法?
524 c#  .net  directory  copy 


27
如何从路径和文件名中删除非法字符?
我需要一种健壮且简单的方法来从简单的字符串中删除非法的路径和文件字符。我使用了下面的代码,但是它似乎什么也没做,我想念的是什么? using System; using System.IO; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string illegal = "\"M<>\"\\a/ry/ h**ad:>> a\\/:*?\"<>| li*tt|le|| la\"mb.?"; illegal = illegal.Trim(Path.GetInvalidFileNameChars()); illegal = illegal.Trim(Path.GetInvalidPathChars()); Console.WriteLine(illegal); Console.ReadLine(); } } }
456 c#  string  path  directory 


9
git忽略子文件夹
我的.Net解决方案中有很多项目。我想排除所有“ bin / Debug”和“ bin / Release”文件夹(及其内容),但仍包括“ bin”文件夹本身以及其中包含的任何dll。 带“ bin /”的.gitignore会忽略“ Debug”和“ Release”文件夹,但还会忽略“ bin”文件夹中包含的所有dll。 .gitignore文件中的“ bin / Debug”或“ bin / Release”不排除目录,除非我将忽略模式完全限定为“ Solution / Project / bin / Debug”-我不想这样做将需要为我的解决方案中的每个项目都包括完整的模式,并为添加的任何新项目添加它。 有什么建议么?

17
如何用Java创建目录?
如何创建目录/文件夹? 一旦我测试 System.getProperty("user.home"); 当且仅当新文件夹不存在时,我才必须创建一个目录(目录名称为“ new folder”)。
386 java  directory 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.