Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASSIGN statement for long filepaths 1

Status
Not open for further replies.

Zadrobu

Structural
Sep 7, 2014
38
I'm having a bit of trouble with an ASSIGN statement in a NASTRAN data file. I need to assign a file that has a quite long filepath. At first I tried simply putting the statement on a single line like so:
Code:
ASSIGN INPUTT4='subfolder_with_a_long_name/subfolder_with_a_long_name/subfolder_with_a_long_name/file.op4'

However this statement results in a fatal error because apparently it exceeds a line length limit:
Code:
     ASSIGN INPUTT4='/subfolder_with_a_long_name/subfolder_with_a_long_name/sUBFOLDER
0*** USER FATAL MESSAGE 723 (XTRACI)
     THE ABOVE FILE NAME CONTAINS AN UNBALANCED NUMBER OF DELIMITERS.

I know that in INCLUDE statements you can simply split the filepath over two lines with a line break. I've tried the same here in the ASSIGN statement, but without success.

So right now I'm stuck and I would be really grateful for any help. Does anyone here know of a solution?
 
Replies continue below

Recommended for you

Does the file path and/or name have spaces in it?
I don't know about NASTRAN specifically, but I've had other programs choke on files with spaces in the path. The solution was to add double quotes around the entire file name.

Code:
"C:\temp\some folder with spaces\thefile.xyz"
 
cowski said:
Does the file path and/or name have spaces in it?
I don't know about NASTRAN specifically, but I've had other programs choke on files with spaces in the path. The solution was to add double quotes around the entire file name.
Thanks for the reply. To answer your question: no, there aren't any spaces in the folder names or file name.
 
Alright, I finally found a solution.[smile] A comma at the end of the first line signals to NASTRAN that the statement is continued on the next line:

Code:
ASSIGN INPUTT4='/subfolder_with_a_long_name/subfolder_with_a_long_name/,
subfolder_with_a_long_name/file.op4'

Now my NASTRAN file runs as it should.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor