-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathJFile.java
147 lines (123 loc) · 4.61 KB
/
JFile.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "JFile" AS
import java.io.File;
public class JFile {
// Author: Steven Feuerstein
// Notice that the actual values don''t matter one bit.
public static int tVal () { return 10009; };
public static int fVal () { return -18703; };
public static String separator (String fileName) {
File myFile = new File (fileName);
return myFile.separator;
}
/* Also from Paul Sharples
public static String separator () {
return System.getProperty("file.separator");
}
*/
public static int canRead (String fileName) {
File myFile = new File (fileName);
boolean retval = myFile.canRead();
if (retval) return tVal(); else return fVal();
}
public static int canWrite (String fileName) {
File myFile = new File (fileName);
boolean retval = myFile.canWrite();
if (retval) return tVal(); else return fVal();
}
public static int exists (String fileName) {
File myFile = new File (fileName);
boolean retval = myFile.exists();
if (retval) return tVal(); else return fVal();
}
public static int isDirectory (String fileName) {
File myFile = new File (fileName);
boolean retval = myFile.isDirectory();
if (retval) return tVal(); else return fVal();
}
public static int isFile (String fileName) {
File myFile = new File (fileName);
boolean retval = myFile.isFile();
if (retval) return tVal(); else return fVal();
}
public static long length (String fileName) {
File myFile = new File (fileName);
return myFile.length();
}
public static String parentDir (String fileName) {
File myFile = new File (fileName);
return myFile.getParent();
}
public static String pathName (String fileName) {
File myFile = new File (fileName);
return myFile.getPath();
}
public static long lastModified (String fileName) {
File myFile = new File (fileName);
return myFile.lastModified();
}
public static int delete (String fileName) {
File myFile = new File (fileName);
boolean retval = myFile.delete();
if (retval) return tVal(); else return fVal();
}
public static int mkdir (String fileName) {
File myFile = new File (fileName);
boolean retval = myFile.mkdir();
if (retval) return tVal(); else return fVal();
}
public static int rename (
String oldFile, String newFile) {
File myFile = new File (oldFile);
File myFile2 = new File (newFile);
boolean retval = myFile.renameTo(myFile2);
if (retval) return tVal(); else return fVal();
}
/*
public static oracle.sql.ARRAY dirContents (String dir)
throws SQLException, ClassNotFoundException {
File myDir = new File (dir);
String[] filesList = myDir.list();
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con = new OracleDriver().defaultConnection();
ArrayDescriptor arrayDesc =
ArrayDescriptor.createDescriptor ("directory_t", con);
oracle.sql.ARRAY filesArray = new oracle.sql.ARRAY (arrayDesc, con, filesList);
return filesArray;
}
*/
// StringBuffer implementation from Tom Berthoff
public static String dirContents (String dir, String delim) {
File myDir = new File (dir);
String[] filesList = myDir.list();
StringBuffer contents = new StringBuffer();
for (int i = 0; i < filesList.length; i++) {
contents.append( delim );
contents.append( filesList[i] );
}
//contents = contents + delim + filesList[i]; // Utrecht 4/2002
return contents.toString();
}
public static void main (String[] args) {
String contents = dirContents (args[0], args[1]);
System.out.println (contents);
/*
try {
oracle.sql.ARRAY filesArray = dirContents (args[0]);
String[] files = (String[]) filesArray.getArray ();
for (int i = 0; i <= files.length; i++)
System.out.println (files[i]);
}
catch ( SQLException e ) {
System.out.println (e.getMessage());}
catch ( ClassNotFoundException e ) {
System.out.println ("ClassNotFoundException");}
*/
}
}
/
/*======================================================================
| Supplement to the fifth edition of Oracle PL/SQL Programming by Steven
| Feuerstein with Bill Pribyl, Copyright (c) 1997-2009 O'Reilly Media, Inc.
| To submit corrections or find more code samples visit
| http://oreilly.com/catalog/9780596514464/
*/