Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public boolean CheckExist(String n)
- {
- String filename = "\\RPGAccounts\\"+n.replaceAll("[\\/:*?<>|]", " ").toLowerCase()+"rpg.info";
- try {
- //FileReader reads textfiles in deafult encoding.
- FileReader fileReader = new FileReader(filename);
- fileReader.close();
- return (true);
- }
- catch (Exception x)
- {
- return (false);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment