Searched refs:dir (Results 1 - 6 of 6) sorted by relevance

/javamail/mail/src/main/java/com/sun/mail/pop3/
H A DTempFile.java57 public TempFile(File dir) throws IOException { argument
58 file = File.createTempFile("pop3.", ".mbox", dir);
H A DPOP3Store.java127 String dir = session.getProperty("mail." + name + ".filecache.dir");
128 if (dir != null && logger.isLoggable(Level.CONFIG))
129 logger.config("mail." + name + ".filecache.dir: " + dir);
130 if (dir != null)
131 fileCacheDir = new File(dir);
/javamail/logging/src/main/java/
H A DFileErrorManager.java46 * File dir = new File("path to dir");
47 * FileErrorManager em = new FileErrorManager(dir);
100 * @param dir a directory to store the email files.
101 * @throws NullPointerException if <tt>dir</tt> is <tt>null</tt>
102 * @throws IllegalArgumentException if <tt>dir</tt> is a
108 public FileErrorManager(File dir) { argument
109 this.emailStore = dir;
149 File dir = this.emailStore;
150 if (dir
[all...]
/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DTempFile.java63 public TempFile(File dir) throws IOException { argument
64 file = File.createTempFile("mbox.", ".mbox", dir);
H A DMboxFolder.java1000 * dir is the name the user uses, often a relative name that's
1001 * relative to the user's home directory. dir (if not null) always
1005 * @param dir user's name for realdir
1011 private void listWork(String realdir, String dir, String pat, argument
1021 if (level == 0 && dir != null &&
1022 Match.path(dir, pat, File.separatorChar))
1023 flist.addElement(dir);
1039 if (dir != null)
1040 name = dir + sl[i];
1052 if (Match.dir(nam
1133 static public boolean dir(String s, String pat, char delim) { method in class:Match
1141 static private boolean dir(String s, int s_index, int s_len, method in class:Match
[all...]
/javamail/mail/src/test/java/com/sun/mail/util/logging/
H A DMailHandlerTest.java3110 for (String dir : dirs) {
3111 f = new File(dir.trim());

Completed in 65 milliseconds