Sha256: 83001d52841b9474e65df5f56afe90b3090c6f5b793d1075c0183379f6446278

Contents?: true

Size: 689 Bytes

Versions: 1

Compression:

Stored size: 689 Bytes

Contents

   # this method puts the configuration rexord on the screen
  def loadrwdtorrentconfiguration
 
         require 'fileutils'
          
               @a_torrentconfigurationfilename = "rwdwtorrent-" + RwdTorrentVersion + ".cnf" 
        
	      
        begin # exception trapped block
       
       Dir.chdir($progdir)
	      fileName = File.join(ConfigurationDir, @a_torrentconfigurationfilename)
        
        
	      fd = File.open(fileName,"r")
	      @a_torrentconfiglines=        fd.read
	 
	     
        fd.close
        rescue SystemCallError, StandardError
            $stderr.print "system call error: " + $!
        end # exception rescue

  end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rwdtorrent-0.06 code/superant.com.rwdtorrent/loadconfigurationrecord.rb