KennySH

Untitled

May 20th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1.     public boolean CheckExist(String n)
  2.     {
  3.         String filename = "\\RPGAccounts\\"+n.replaceAll("[\\/:*?<>|]", " ").toLowerCase()+"rpg.info";
  4.         try {
  5.             //FileReader reads textfiles in deafult encoding.
  6.             FileReader fileReader = new FileReader(filename);
  7.             fileReader.close();
  8.             return (true);
  9.             }
  10.         catch (Exception x)
  11.         {
  12.             return (false);
  13.         }
  14.        
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment