`
cywhoyi
  • 浏览: 422833 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

FileClass

    博客分类:
  • JAVA
阅读更多

 

import java.io.*;

public class FileClass {

String sPath;

String sFilePath;

String sContent;

 

public boolean newFloder(String s) {

sPath = s;

sPath = sPath.toString();

File myFilePath = new File(sPath);

if (!myFilePath.exists()) {

myFilePath.mkdirs();

return true;

} else

return false;

}

public static void main(String[] args) {

FileClass file1 = new FileClass();

File files = new File("F:/Music"); // 指定文件名及路径

String s;

int i = 1;

int j;

String chapterName;

for (String file : files.list()) {

j = i++;

chapterName = "chapter" + "0" + j + "";

s = "F:/Music/" + chapterName;

if (file1.newFloder(s)) {

System.out.println("文件夹创建成功!");

} else {

System.out.println("文件创建失败");

}

}

}

分享到:
评论

相关推荐

    Mapped File Class (4KB)

    标题 "Mapped File Class (4KB)" 提到的是一个关于映射文件类的实现,它涉及到计算机内存管理和操作系统层面的知识。映射文件(Mapped File)是一种技术,允许将磁盘上的文件内容直接映射到进程的虚拟地址空间,使得...

    ruby_test_file

    ruby test_file class des

    Visual C++ 编程资源大全(英文源码 其它)

    opening a file.(82KB)<END><br>82,WndTabs250.exe Window and File Management For Visual C++(1498KB)<END><br>83,WizGen.zip This Add-in is similar to class wizard but can be used for MFC extension ...

    把.class用jar工具打包成可执行程序.doc

    - `classfile1`, `classfile2` 等是你要打包的 `.class` 文件,可以是单个文件或通配符(如 `*.class`)来打包所有文件。 - 示例命令: ```bash jar cmf mani.txt myjar.jar Main ``` 或者,如果有很多类文件...

    配置TSM SERVER方法及步骤.docx

    比如`define devclass fileclass devtype=file maxcapacity=20000M directory=/opt/backup`定义了一个名为"fileclass"的设备类,类型为文件,最大容量为20GB,并指定备份目录为"/opt/backup"。然后创建不同的存储池...

    C# 保存数据文件方法

    public class FileClass { public static void Main() { WriteToFile(); } static void WriteToFile() { using (StreamWriter SW = File.CreateText("c:\\MyTextFile.txt")) { SW.WriteLine("God is ...

    Thinking in C++ 卷2中文版.docx

    通过iostream库,可以方便地创建自定义的流缓冲区,如上述代码中的`FileClass`,它将stdio的FILE结构封装为一个类,确保文件正确打开和关闭,并通过异常处理机制增加了错误处理的健壮性。`FileClass`的构造函数负责...

    微软白盒测试例子pex.samples

    Using directly file system primitives such as the System.IO.File class makes the code less testable since it hardcodes a dependency on the state of the physical file system at the time tests are ...

    Visual C++ 编程资源大全(英文源码 文件)

    1,01.zip Safe file name comparison 处理长文件名的比较(5KB)<END><br>2,02.zip Mapped File Class 映像文件类(11KB)<END><br>3,03.zip Filename Handling Class 有关文件名的类(5KB)<END><br>4...

    绿色版PocketDOS 和 绿色版TC3.0

    ASSOC CPP - Association class (used by dictionary class) BABSTARY CPP - Source file for classlibs BDICT CPP - Source file for Classlibs BSORTARY CPP - Source file for classlibs BTREE CPP - Tree ...

    commons-bcel,阿帕奇公地BCEL.zip

    - **生成类文件**:完成修改后,使用`ClassGen`的`getJavaClass()`方法获取更新的`JavaClass`对象,然后调用`ClassFile`的`generate()`方法生成新的`.class`文件。 4. **示例代码**: ```java import org.apache...

    ClassLoader实例

    File classFile = new File(fileName); FileInputStream fis = new FileInputStream(classFile); int length = (int) classFile.length(); byte[] bytes = new byte[length]; fis.read(bytes); fis.close(); ...

    jar包

    jar cfm jar_file_name manifest_file class_files_or_directories ``` 这里的`c`表示创建新的jar文件,`f`指定jar文件名,`m`指定了清单文件。 **运行jar包** 运行jar包有两种主要方式: 1. 使用`java -jar`...

    Google C++ Style Guide(Google C++编程规范)高清PDF

    For example, if your header file uses the File class in ways that do not require access to the declaration of the File class, your header file can just forward declare class File; instead of having ...

    FileServer.class

    FileServer.class

    java 中调用命令

    - `jar cf jarfile manifest-file class-file(s)`: 创建一个新的JAR文件,`manifest-file`是清单文件,`class-file(s)`是你要打包的类文件。 - `jar uvf jarfile file(s)`: 更新现有JAR文件,添加新的文件或目录。...

    L3092_精通VisualCWeb开发道\L3092_精通Visual C# 2005语言基础、数据库系统开发、Web开发道

    FileClass.php 公文类 FileManager.php 公文管理模块主菜单 FileAdd.php 添加公文模块 FileApprove.php 审批公文模块 FileReport.php 上报公文模块 FileCategoryView.php 根据状态查询显示...

    JDBC API基本用法、jar、JDK配置,泛型

    3. 使用`jar cf jar_file_name.jar manifest_file class_files`命令打包,其中`c`代表创建,`f`指定jar文件名,`manifest_file`是MANIFEST.MF文件,`class_files`是class文件列表或目录。 4. 可以通过`jar tvf jar_...

    生成JAR包的方法(打包后运行好像不快)

    - `jar cvf JAR_FILE_NAME MANIFEST_FILE CLASS_FILES` - 其中`cvf`表示创建一个新的JAR文件;`MANIFEST_FILE`是指定的清单文件路径;`CLASS_FILES`是需要打包的类文件。 例如,要创建名为`classes.jar`的JAR包...

Global site tag (gtag.js) - Google Analytics