NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io


import java.io.File;
import java.io.FileFilter;
import java.io.FilenameFilter;
import java.io.IOException;
import java.net.URI;


public class App01
{
public static void main(String[] args)
{
String dosyaYolu = "C:\Windows\System32\calc.exe";
String path = "C:/Windows/System32/calc.exe";

File f1 = new File("C:/Users/Emir/notes.txt");
// File f2 = new File(URI.create("file://C:/Users/notes.txt"));
File klasor = new File("C:/Windows");
// C:/Windows/format.com
File f3 = new File(klasor, "format.com");
File f4 = new File("C:/Users/TuX/Desktop", "data.txt");

// Belirtilen Dosya Gerçekten Var mı?
boolean dosyaVarMi = f1.exists();
// Dosyanın Byte Cinsinden Boyutu (long)
long dosyaBoyutu = f1.length();
// File Bir Dosyamı
boolean isFile = f1.isFile();
// File Bir Klasormu
boolean isDir = f1.isDirectory();

// c:/Windows/System32/calc.exe
// Dosyanın Adını Al
String ad = f1.getName(); // calc.exe
String rF = f1.getParent(); // C:/Windows/System32

// Dosyanın Tam Yolunu Al
// Klasoru Belli Olmayan Dosyalar
// Calisma Klasoru Olarak, Uygulamanızın Bulundugu
// Klasoru Baz Alirlar
// Bu Yola Erişim İçin, getAbsolutePath() Kullanılabilir
File dF = new File("java.dat");
String tamYol = dF.getAbsolutePath();
System.out.println(tamYol);

// Dosyanın Bulunduğu Klasoru, Bir File Instance'i Olarak
// Dondurur C:/Windows/System32
File ustKlasor = f1.getParentFile();

// Dosya İzinlerini Okuma
boolean canRead = f1.canRead();
boolean canWrite = f1.canWrite();
boolean canExec = f1.canExecute();

// Dosya İzinlerini Değiştirme
f1.setReadable(true);
f1.setWritable(true);
f1.setExecutable(true);

// Dosya Gizlenmiş Mi
boolean isHidden = f1.isHidden();


long hddToplamAlan = f1.getTotalSpace();
long hddBosAlan = f1.getFreeSpace();
long hddKullanilabilirAlan = f1.getUsableSpace();

// Bir Dosyayı Silmek
boolean sonuc = f1.delete();

// Boş Bir Dosya Oluşturmak
try
{
boolean dosyaOlusturuldumu = f1.createNewFile();
boolean klasorOlusturuldumu = f1.mkdirs();
} catch (Exception e)
{
System.out.println(
"Dosya Oluşturma Hatası : "+e.toString());
}

File d1 = new File("C:/aaa.txt");
File d2 = new File("C:/Users/Emir/aaa.txt");

// Dosyanın Adını / Konumunu Değiştir
d1.renameTo(d2);

// Uygulamanız Sırasında Çalıştığınız Dosyanın,
// Uygulamanız Kapandığında Sistem Tarafından Otomatik Olarak
// Silinmesini İstiyorsanız :
d1.deleteOnExit();

// Eğer Kullanılan File Instance'i Bir Klasoru
// Gösteriyorsa, O Klasordeki Alt Dosyaları Almak İçin
String dosyaAdlari[] = f1.list();
File altDosyalar[] = f1.listFiles();


/* Eğer, Bir Klasorun Altındaki Tüm Dosyaları almak yerine
Belli Kriterlere Uyan Dosya & Klasorleri Toplamak İstiyorsanız
FileFilter veya FileName Filter Kullanabilirsiniz
*/

// İsminde process Kelimesi Geçen Dosyaları
// Toplamak İçin Filtre
FilenameFilter ff = new FilenameFilter()
{
public boolean accept(File dir, String name)
{
if (name.contains("process")) return true;
else return false;
}
};

File processDosyalari[] = f1.listFiles(ff);


// Alt Dosyaları Belli Özellikler Neticesinde
// Toplamak İçin Filtre
// 1 MB'tan Küçük File'ları
FileFilter dFiltre = new FileFilter()
{
public boolean accept(File f)
{
return (f.length() < 1048576 && f.isFile());
}
};

File kucukDosyalar[] = f1.listFiles(dFiltre);


}
}
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.