Subversion Repositories SmartDukaan

Rev

Rev 2392 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2392 Rev 2395
Line 118... Line 118...
118
    	};
118
    	};
119
    	String[] children = dir.list(filter);
119
    	String[] children = dir.list(filter);
120
 
120
 
121
    	for (int i=0; i<children.length; i++) {
121
    	for (int i=0; i<children.length; i++) {
122
	        String filename = children[i];
122
	        String filename = children[i];
123
		    File f = new File(filename);
123
		    File f = new File("/var/log/website/" + filename);
124
	        if(!f.exists()) {
124
	        if(!f.exists()) {
125
	            System.out.println(filename + " - does not exist");
125
	            System.out.println(filename + " - does not exist");
126
	        }
126
	        }
127
	        FileInputStream fis = null;
127
	        FileInputStream fis = null;
128
	        try {
128
	        try {