Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

22
LINES

< > BotCompany Repo | #2000349 // class virtual

New Tinybrain snippet

class virtual {
  static java.io.File newFile(String path) {
    return new java.io.File(rebase(path));
  }
  
  static java.io.FileInputStream newFileInputStream(String path) {
    return new java.io.FileInputStream(rebase(path));
  }
  
  static java.io.FileInputStream newFileOutputStream(String path) {
    return new java.io.FileOutputStream(rebase(path));
  }
  
  static String virtual_baseDir = "";
  
  static String rebase(String path) {
    if (new File(path).isAbsolute())
      return path;
    else
      return new File(new File(virtual_baseDir), path).getPath();
  }
}

Author comment

Began life as a copy of #2000346

download  show line numbers   

Snippet is not live.

Travelled to 12 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #2000349
Snippet name: class virtual
Eternal ID of this version: #2000349/1
Text MD5: e3514c9dfa42904a77585141f0861a6f
Author: stefan
Category: javax
Type: New Tinybrain snippet
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2015-05-12 20:18:41
Source code size: 605 bytes / 22 lines
Pitched / IR pitched: No / Yes
Views / Downloads: 599 / 143
Referenced in: [show references]