Sha256: 2d64db5ca14c1fcd38c009e862a1919e47fab9a04d79100a02d4abcc247ba26c

Contents?: true

Size: 621 Bytes

Versions: 1

Compression:

Stored size: 621 Bytes

Contents

   # this method puts the configuration rexord on the screen
  def loadrwdmp3configuration
 
         require 'fileutils'
          
          @a_mp3configurationfilename = "rwdwmpd-" + RwdMpdVersion + ".cnf" 
         
	      
        begin # exception trapped block
       
       Dir.chdir($progdir)
	      fileName = File.join(ConfigurationDir,  @a_mp3configurationfilename)
        
	      fd = File.open(fileName,"r")
	      @a_mp3configline1=        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
rwdmpd-0.06 code/superant.com.rwdmp3/loadconfigurationrecord.rb