R
Raimon Fs
I'm trying to create a zip file, but I'm getting an error saying the
file doesn't exist, but it exists, as shown in the code.
Any clues ?
I think the permissions are OK, as everyboday can read it ...
maybe there's another way to create a zip file ...
thanks,
r.
require "rubygems"
require 'zip/zip'
require 'zip/zipfilesystem'
file_path =
"/Users/montx/Documents/Ruby/codi/scanns/download/bs_promotors/masivo_prestamos_20090521.txt"
file_zip="/Users/montx/Documents/Ruby/codi/scanns/download/bs_promotors/masivo_prestamos_20090521.zip"
EXAMPLE_ZIP=file_zip
Zip::ZipFile.open(EXAMPLE_ZIP, Zip::ZipFile::CREATE) { |zf|
puts "File ready to zip" if File.exists?(file_path)
puts zf.file.read(file_path)
}
output:
File ready to zip
Errno::ENOENT: No such file or directory -
Users/montx/Documents/Ruby/codi/scanns/download/bs_promotors/masivo_prestamos_20090521.txt
method get_entry in zip.rb at line 1515
method get_input_stream in zip.rb at line 1411
method read in zip.rb at line 1435
method read in zipfilesystem.rb at line 562
method read in zipfilesystem.rb at line 383
at top level in untitled at line 16
method open in zip.rb at line 1382
at top level in untitled at line 11
copy output
Program exited with code #1 after 0.16 seconds.
file doesn't exist, but it exists, as shown in the code.
Any clues ?
I think the permissions are OK, as everyboday can read it ...
maybe there's another way to create a zip file ...
thanks,
r.
require "rubygems"
require 'zip/zip'
require 'zip/zipfilesystem'
file_path =
"/Users/montx/Documents/Ruby/codi/scanns/download/bs_promotors/masivo_prestamos_20090521.txt"
file_zip="/Users/montx/Documents/Ruby/codi/scanns/download/bs_promotors/masivo_prestamos_20090521.zip"
EXAMPLE_ZIP=file_zip
Zip::ZipFile.open(EXAMPLE_ZIP, Zip::ZipFile::CREATE) { |zf|
puts "File ready to zip" if File.exists?(file_path)
puts zf.file.read(file_path)
}
output:
File ready to zip
Errno::ENOENT: No such file or directory -
Users/montx/Documents/Ruby/codi/scanns/download/bs_promotors/masivo_prestamos_20090521.txt
method get_entry in zip.rb at line 1515
method get_input_stream in zip.rb at line 1411
method read in zip.rb at line 1435
method read in zipfilesystem.rb at line 562
method read in zipfilesystem.rb at line 383
at top level in untitled at line 16
method open in zip.rb at line 1382
at top level in untitled at line 11
copy output
Program exited with code #1 after 0.16 seconds.