search for: fullfilenam

Displaying 3 results from an estimated 3 matches for "fullfilenam".

Did you mean: fullfilename
2003 Oct 16
2
returning dynamic variable names from function
...ck, but again, the names of the lists to pass back have been "assign-ed" to the filename. See code snippet below, especially the "*** WHAT DO I PUT HERE ***" part! Thanks in advance for any help!!! -Scott CODE SNIPPET BELOW: loadFiles <- function() { fullFileNames <- choose.files(filters = c("Fluor file (*.data,*.Dat)", "*.dat;*.Dat")) numFiles <- length(fullFileNames) fileNames <- basename(fullFileNames) # removes the all the paths from the full filenames splitNames <- strsplit(fileNames,"_") # create a...
2010 Feb 08
0
Use FLAC__stream_encoder_init_FILE instead of FLAC__stream_encoder_init_file
...am_encoder_set_verify( encoder, FALSE ); > > FLAC__stream_encoder_set_blocksize( encoder, 0 ); > > FLAC__stream_encoder_set_compression_level( encoder, 5); > > >> >> FLAC__StreamEncoderInitStatus InitStatus; > > InitStatus=FLAC__stream_encoder_init_file( encoder, FullFileName, NULL, >> NULL ); > > if(FLAC__STREAM_ENCODER_INIT_STATUS_OK != InitStatus ) > > { > > printf(_T("Error Code: %d"),(int)InitStatus); > > } > > The code worked for years, recently I made a unicode version of the app, it works with the &...
2010 Sep 15
2
Get File Names in Folder, Read Files, Update, and Write
Dear All, Could you please recommend how I can do this? I have several text files in one folder. Let's name them A0801.RSK, A0802.RSK, .... I would like R to 1) Know all file names in this folder 2) Update value in one column of these files 3) Write results in another text file with _xval in the file names Below is R code for read, update, and write one file