Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以仅使用 URL 类或 URLConnection 类在 Java 中创建一个不存在的目录?
通常我使用类似的东西
new URL("ftp://"+usr+":"+pass+"@"+srvr+""+existing_dir+""+file).openConnection()
我现在使用 Commons Net Library 和他们的 FTP 解决方案。
所以现在我只需要运行 client.makeDirectory("directory");
client.makeDirectory("directory");