• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. truncating a File

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 144
  • Views 13976
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

truncating a File

useratcad
useratcad over 16 years ago

Hello,

 is there an easy way to truncate the beginning or the end of a file?

I tought I can find a special position in file and then truncate the rest of it resp. cut everything above.

 

Thanks Tim 

  • Cancel
  • Bernd
    Bernd over 16 years ago

    I'm not sure if can modify a file on the fly in SKILL,
    at least I never have done this.
    You can open a file read it's contents and copy the contents you
    want to a new file.

    Have a look at the

     - SKILL Language User Guide
      o I/O and File Handling
        * Working with File Offsets (fileTell, fileSeek)

    Bernd

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • useratcad
    useratcad over 16 years ago

    Thanks for the hint.

    I was poking around with fileTell &fileSeek, but it seemed too complicated to open a file then copy all the data until the 5th last line was reached. I can't even figure out, howto check if EOF is rechead within a while-loop or so.

    Maybe there is a better solution for my problem:

    I need to read and write some values into a config file like the windows ini-files:

    startdir=/etc/bin/

    mytext="hello world"

    oneNum=5 

    ...

     

    Thanks Tim 

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Bernd
    Bernd over 16 years ago

    Something like that?

     

    procedure( BFreadConfig( t_inFile "t" )
        let( ( l_keyValueList p_inPort t_key t_line t_value )
       
    p_inPort = infile( t_inFile )
       
    when( p_inPort
        while( gets( t_line p_inPort )
            when( t_line && t_line != "" && t_line != "\n"
            l_keyValueList = parseString( t_line "=" )
            t_key = car( l_keyValueList )
            t_value = cadr( l_keyValueList )
            printf( "Key: %s, Value: %s\n" t_key t_value )
            ) ;; close when
        ) ;; close while
    ) ;; close when      

    close( p_inPort )  

    ) ;; close let
    ) ;; cloes procedure


    procedure( BFmodifyConfig( t_outFile t_key t_value "ttt" )
        let( ( l_keyValueList p_inPort t_line p_outPort t_tmpFile )
       
    t_tmpFile = strcat( t_outFile ".tmp" )
    system( strcat( "cp " t_outFile " " t_tmpFile ) )
    p_inPort = infile( t_tmpFile )   
    p_outPort = outfile( t_outFile )
      
    when( p_inPort
        while( gets( t_line p_inPort )
            if( t_line && t_line != "" && t_line != "\n" then
            l_keyValueList = parseString( t_line "=" )
            car( l_keyValueList )
            if( t_key == car( l_keyValueList ) then
                fprintf( p_outPort "%s=%s\n" t_key t_value )
            else
                   fprintf( p_outPort t_line )
            ) ;; close if           
        else
                fprintf( p_outPort t_line )
            ) ;; close if
        ) ;; close while
    ) ;; close when      

    close( p_inPort )
    close( p_outPort )
    system( strcat( "rm -f " t_tmpFile ) ) 

    ) ;; close let
    ) ;; cloes procedure
     

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • useratcad
    useratcad over 16 years ago

    looks great!

     Thanks a lot, that helps definitly

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information