Loading...
You are not logged-in Login/Register





  • Posts   Search Threads
  • ReinaldoJune 6, 2009 9:21 AM PDT   
    Blank space in flie name

    When I Open a file that has a path with blank spaces, e.g C:Program filesetc...) the file is not found because it is truncated to C:Program
    Is there a way to have fortran get the full path and name with blank spaces?

    Thanks,

    Reinaldo



    jimdempseyatthecoveJune 6, 2009 10:28 AM PDT
    Rate
     
    Re: Blank space in flie name

    Quoting - Reinaldo

    When I Open a file that has a path with blank spaces, e.g C:Program filesetc...) the file is not found because it is truncated to C:Program
    Is there a way to have fortran get the full path and name with blank spaces?

    Thanks,

    Reinaldo


    Enquote the quotes (you have both ' and " for quotes)

    '"C:Program Files"'



    Blog: The Parallel Void
    www.quickthreadprogramming.com

    Steve Lionel (Intel)June 6, 2009 2:56 PM PDT
    Rate
     
    Re: Blank space in flie name

    How is this filename getting to Fortran?  Is it a command line argument? You'll see the same behavior for many applications.  Enclosing the filename in quotes ("") will handle that.

    If it's just in an OPEN, then embedded blanks in a file specification are fine.


    Steve

    Attaching or including files in a post
    Doctor Fortran blog
    @DoctorFortran on Twitter

    Reinaldo GarciaJuly 2, 2009 7:32 PM PDT
    Rate
     
    Re: Blank space in flie name

    How is this filename getting to Fortran?  Is it a command line argument? You'll see the same behavior for many applications.  Enclosing the filename in quotes ("") will handle that.

    If it's just in an OPEN, then embedded blanks in a file specification are fine.

    Thanks Steve:

    I use the GETARG subroutine to assign from the command line argument the file name to a character variable. The file name may have blank spaces.  I then use the fullpathqq and splitpathqq functions to extract the path, which I assign to another variable. In both cases I get the names trucated when there is a blank space. What can I do in those cases?

    Thanks so much,

    Reinaldo


    David WhiteJuly 2, 2009 11:07 PM PDT
    Rate
     
    Re: Blank space in flie name

    Quoting - Reinaldo Garcia

    Thanks Steve:

    I use the GETARG subroutine to assign from the command line argument the file name to a character variable. The file name may have blank spaces.  I then use the fullpathqq and splitpathqq functions to extract the path, which I assign to another variable. In both cases I get the names trucated when there is a blank space. What can I do in those cases?

    Thanks so much,

    Reinaldo

    I would expect that you need to surround the argument in the command line with double quotes.  As mentioned earlier, this behavious is common with other Windows programs.

    David

Forum jump:  

Intel Software Network Forums Statistics

16,369 users have contributed to 46,341 threads and 163,954 posts to date.

In the past 24 hours, we have 18 new thread(s) 102 new posts(s), and 67 new user(s).

In the past 3 days, the most popular thread for everyone has been Formula for the intersection of straight lines The most posts were made to Take a look at John Burkhard&# The post with the most views is \"-check none\" generates error

Please welcome our newest member bikerepair8


For more complete information about compiler optimizations, see our Optimization Notice.