What is wrong, please help me!

John Hunter jdhunter at ace.bsd.uchicago.edu
Thu May 8 09:51:13 EDT 2003


>>>>> "Bunger" == Bunger  <bunger00 at grm.hia.no> writes:

    Bunger> ENCPATH =
    Bunger> "C:\Nokia\Tools\Nokia_Multimedia_Converter_2_0\MMConverterCon.exe"

I believe the path separator for win32 is '\\', so you would want to
say something like


  ENCPATH 'C:\\Nokia\\Tools\\Nokia_Multimedia_Converter_2_0\\MMConverterCon.exe'


You can also join paths with, for examples, 

  somepath = os.path.join('c:', 'nokia', 'tools')

JDH





More information about the Python-list mailing list