MathGroup Archive 2012

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Import multiple files with same extension from a folder

  • To: mathgroup at smc.vnet.net
  • Subject: [mg128240] Re: Import multiple files with same extension from a folder
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Thu, 27 Sep 2012 22:50:28 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20120927070449.4F2086837@smc.vnet.net>

Table[Export["test" <> ToString[n] <> ".exp",
   Exp[n], "Text"], {n, 4}];

Table[Export["test" <> ToString[n] <> ".log",
   Log[n], "Text"], {n, 4}];

Import /@ FileNames["*.exp"]

{"E", "E^2", "E^3", "E^4"}

ToExpression[%] // Log

{1, 2, 3, 4}


Bob Hanlon


On Thu, Sep 27, 2012 at 3:04 AM, Dominik Hezel <sendme2000 at me.com> wrote:
> Hello,
>
> I have a folder with different files, e.g.
>
> test1.exp
> test2.exp
> test1.log
> test2.log
> ...
>
> The number of files and actual file names is unknown. I would like to import all files ending with .exp. How do I do this rather simple task?
>
> Thanks for any help.
>



  • Prev by Date: Re: maximization with array of constraints
  • Next by Date: Re: Import multiple files with same extension from a folder
  • Previous by thread: Re: Import multiple files with same extension from a folder
  • Next by thread: Re: Import multiple files with same extension from a folder