This works fine for me; look at your options on 'scan':

> x <- scan(text = "H20100902.TXT
+ H20100903.TXT
+ H20100904.TXT
+ H20100905.TXT
+ H20100906.TXT
+ H20100907.TXT
+ H20100908.TXT", what = '')
Read 7 items
> cat(x, file = 'file.txt', sep = '\n')  # create the 'file.txt'
>
> files <- scan('file.txt', what = '')  # read names from the file
Read 7 items
> files  # display the names
[1] "H20100902.TXT" "H20100903.TXT" "H20100904.TXT" "H20100905.TXT"
"H20100906.TXT"
[6] "H20100907.TXT" "H20100908.TXT"
>


On Wed, Mar 7, 2012 at 8:49 AM, Jie Tang <[email protected]> wrote:
> hi everyone .
> I have a group of files that needs to be read in .
> And I put their filename into one file with the name "file.txt"
>
> And in the file.txt,the filename are shown as below :
> H20100902.TXT
> H20100903.TXT
> H20100904.TXT
> H20100905.TXT
> H20100906.TXT
> H20100907.TXT
> H20100908.TXT
>
> Now I want to read these file from the file.txt by such  codes:
>
>
> filename <-("file.txt")
>
> pp <- scan(filename,what=list(""),sep=" ")
>
> but R shows  that :
>> pp
> [[1]]
>
> that is pp is just one dimension data?
>
> but when I type
>>pp[1]
> the filenames are shown.
>
> How could I read these filenames into one array
> and so that .I can read the data by such a command ?
>
> ddata<-scan(pp[2],what=datalist,na.strings = 999)
>
> thank you .
> --
> TANG Jie
> Email: [email protected]
> Tel: 0086-2154896104
> Shanghai Typhoon Institute,China
>
>        [[alternative HTML version deleted]]
>
> ______________________________________________
> [email protected] mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.



-- 
Jim Holtman
Data Munger Guru

What is the problem that you are trying to solve?
Tell me what you want to do, not how you want to do it.

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to