Delete files in a directory

T

thehcdreamer

Hello, this is my first post here, so first i would like to thanks all
the people who works for this site.

Well, i'm trying to set up a little script that should delete all the
files in a given drectory; the system should work like this:
-I have the name and the path of file = "/Users.....file1"
-from file, i should get the directory (I've used File.dirname(file))
-from that directory, i should delete all files and sub directories
except from the given file (in this case, file1)

I'm making confusion when i try to iterare on the files and irectory in
that folder, and i'm scared to make test of deleting files in the system

Oscar
 
S

stefano.crocco

Note: parts of this message were removed by the gateway to make it a legal Usenet post.

Alle sabato 3 novembre 2007, Oscar Del ben ha scritto:
Hello, this is my first post here, so first i would like to thanks all
the people who works for this site.

Well, i'm trying to set up a little script that should delete all the
files in a given drectory; the system should work like this:
-I have the name and the path of file = "/Users.....file1"
-from file, i should get the directory (I've used File.dirname(file))
-from that directory, i should delete all files and sub directories
except from the given file (in this case, file1)

I'm making confusion when i try to iterare on the files and irectory in
that folder, and i'm scared to make test of deleting files in the system

Oscar

If I understand correctly what you need to do, this should work.

require 'fileutils'

file_name = File.basename(file_path)
dir = File.dirname(file_path)
Dir.foreach(dir) do |f|
if f == file_name or f == '.' or f == '..' then next
elsif File.directory?(f) then FileUtils.rm_rf(f)
else FileUtils.rm( f )
end
end

To test the script, you can replace FileUtils.rm_rf(f) and FileUtils.rm(f) respectively with

FileUtils.rm_rf( f, :noop => true, :verbose => true)

and

FileUtils.rm( f, :noop => true, :verbose => true)

With those arguments, FileUtils.rm and FileUtils.rm_rf don't actually delete the files (or directories), but print the operation that would be performed on screen, so you can check whether everything works. For more information on this, look at the ri documentation for FileUtils and FileUtils.rm.

I hope this helps

Stefano
 
A

andrea.fazzi

require 'fileutils'

def delete(filename)
Dir["#{File.dirname(filename)}/*"].each do |file|
next if File.basename(file) == File.basename(filename)
FileUtils.rm_rf file, :noop => true, :verbose => true
end
end

USAGE:

delete 'path/to/file1'

Bye.
Andrea

Il giorno sab, 03/11/2007 alle 19.39 +0900, Oscar Del ben ha scritto:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,566
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top