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).getAbsolutePath();
}
}Began life as a copy of #2000349
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: | #2000350 |
| Snippet name: | class virtual (fixed) |
| Eternal ID of this version: | #2000350/1 |
| Text MD5: | 574d1b70cdcbb86085715a7284ffab7b |
| 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:29:33 |
| Source code size: | 613 bytes / 22 lines |
| Pitched / IR pitched: | No / Yes |
| Views / Downloads: | 881 / 502 |
| Referenced in: | #618 - I/O virtualizer (draft) #2000351 - Compiled #618 #2000352 - class virtual (fixed 2) #3000382 - Answer for ferdie (>> t = 1, f = 0) |