Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package app9;
- import java.io.File;
- public class App9 {
- public static void main(String[] args) {
- // TODO code application logic here
- // File
- File f = new File("c:/test");
- // используем метод для определения сущ-я файла или папки
- boolean value = f.exists();
- if(value){
- System.out.println("Папка c:/test - существует!!!");
- }
- // метод для опеределения типа объекта (файл или папка)
- if(f.isDirectory()){
- System.out.println("c:/test - папка!");
- }
- File f2 = new File("c:/test/test.txt");
- if(f2.isFile()){
- System.out.println("c:/test/test.txt - файл!");
- }
- // получим список объектов для определнной папки
- String[] array = f.list();
- for (int i = 0; i < array.length; i++) {
- System.out.println("array[i]=" + array[i]);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement