FileUtils is a File manipulation utility from Apache Commons

learn more… | top users | synonyms

0
votes
3answers
78 views

Java Servlet Downloading File

So I have two files, the servlet: package com.servlets; import java.io.File; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import ...
0
votes
2answers
225 views

Java FileUtils copy backup directory

i'm using FileUtils of Commons.IO and i'm trying to create a backup script, the simple rules is to copy from source to dest directory all files (and subdirs) that don't exist in dest or if source has ...
0
votes
1answer
16 views

How to list all files with a specific extension fast and efficiently from a SD card in android?

I am trying to build an android app which lists all the files from the SD card that contain a specific extension. For e.g: pdf,mp3,txt etc. I have tried using the android MediaStore class' ...
0
votes
1answer
47 views

Copying file from Linux to NAS Share with Java (Apache FileUtils FileCopy)

One of the developers here has written some Java code which uses the Apache FileUtils FileCopy command to copy a csv from a host server (linux) to a file share (EMC NAS). The share's setup such that ...
0
votes
1answer
43 views

Moving files on external volume with Ruby fileutils?

I've run into what feels like a pretty basic error, but I can't find any documentation about what I'm struggling with. Here's the code: require "fileutils" def new_name(fn, dest = ...
0
votes
1answer
355 views

How to use FileUtils cp using directory name with spaces in Windows?

I've tried using the suggestions in this thread to no avail: How to use copyfile when there are spaces in the directory name?. To be clear, the directory I'm using is already in double-quotes, and ...
0
votes
1answer
164 views

Apche Common FileUtils Read XML file into String

I have stored SOAP XML file into local machine now to validate that XML i need to load that file and extract the XML from SOAP body to validate it. SOAP XML <SOAP:Envelope> ...
1
vote
0answers
53 views

Ruby roo not finding complex file names

I am using roo to process some Excel files with complex file names (e.g. "Patient Status Up-Date-V2 051812.xlsx"). They are found with proper escaping with OS commands, but not from Ruby roo (which ...
1
vote
0answers
23 views

gnu fileutils upgrade for rtems install

To install RTEMS and all the requirements, I need the install bin to work correctly and it seems not to be the case. Indeed, when I try "install -c -d tmp/foo/bar" it doesn't create the directories ...
1
vote
0answers
101 views

difference between du command and apache FileUtils.sizeOfDirectory

I do a simple du -sh on /etc/ directory it shows me 11M. But when I use: System.out.println(FileUtils.byteCountToDisplaySize(FileUtils.sizeOfDirectory(new File("/etc/")))); This shows me: 68 MB. Is ...