[ジャワ] レコード生成ファイル, Javaでのディレクトリ

プロジェクト内のフォルダを作成します :

File directory_1 = new File("new");	// khai bao 1 folder ten la new trong project
directory_1.mkdir();		// lenh tao folder new tren o dia

私たちの最初の注文は、宣言されたが、まだ作成されていないと, 作成する 1 フォルダには、第二の順序を記述する必要があります.

いずれかのパスにフォルダを作成します:

File directory_2 = new File(directory_1, "new1");	// tao thu muc new1 trong thu muc new vua tao
directory_2.mkdir();

プロジェクト内のファイルを作成します。:

File file = new File("test.txt");	// nam trong project
try {
	file.createNewFile();		// tao file test.txt
} catch (IOException e) {
	e.printStackTrace();
}

ファイルを作成するときにいくつかの例外もあり、私たちは順番を配置する必要が file.createNewFile(); ·チョンのトライキャッチ.
ディレクトリにファイルを作成します。 任意の同様のフォルダ, 私たちはレポートファイルのパスを追加する必要があります.

インテリジェントコードの花:

import java.io.File;
import java.io.IOException;

public class FileAndDirectory {
	public static void main(String[] args) {
		
		File directory_1 = new File("new");	// khai bao 1 folder ten la new trong project
		directory_1.mkdir();		// lenh tao folder new tren o dia
		
		
		File directory_2 = new File(directory_1, "new1");	// tao thu muc new1 trong thu muc new vua tao
		directory_2.mkdir();		
		
		//khai bao 3 file nam trong cac thu muc khac nhau 
		File file_1 = new File("test.txt");	// nam trong project
		File file_2 = new File(directory_1,"test1.txt");	// nam trong directory_2 (new1)
		File file_3 = new File("/media/quan/DATA/Dropbox/STUDY/PROGRAM/Java/code/JavaBasic/new/new1","test2.txt");
		// new la directory1, new1 la directory2
		try {
			file_1.createNewFile();		// tao file test.txt
			file_2.createNewFile();		// tao file test1.txt
			file_3.createNewFile();		// tao file test2.txt
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}

自分で行うローションを使用すべきであるUbuntuの /メディア/泉/ DATA /…. Windowsを使用している場合はパスが可能 ℃:foldertext.txt
フォルダのパスを取得するには、以下のすべての手順を見ることができます:
LAYđườngDANファイル·チョンのジャワ - Javaでファイルのパスを取得
Ubuntuのでパスフォルダ - Ubuntuの内のディレクトリ
Windowsとの: リンクをクリックし、ディレクトリの場所にプロパティ]を選択しclickphai