ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Create a directory using tex
@ 2006-08-29  5:30 Aditya Mahajan
  2006-08-29  7:13 ` Taco Hoekwater
  0 siblings, 1 reply; 7+ messages in thread
From: Aditya Mahajan @ 2006-08-29  5:30 UTC (permalink / raw)


Hi,

  I want to create a macro that writes files in a sub directory. 
If the directory is already created, things work fine. However, if the 
directory is not there, tex complains

! I can't write on file ....

Please type another output file name:

  Is there a way I can ask tex to create a directory if one does not 
exist?

Aditya

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Create a directory using tex
  2006-08-29  5:30 Create a directory using tex Aditya Mahajan
@ 2006-08-29  7:13 ` Taco Hoekwater
  2006-08-30  1:09   ` Aditya Mahajan
  0 siblings, 1 reply; 7+ messages in thread
From: Taco Hoekwater @ 2006-08-29  7:13 UTC (permalink / raw)


Aditya Mahajan wrote:
> Hi,
> 
>   I want to create a macro that writes files in a sub directory. 
> If the directory is already created, things work fine. However, if the 
> directory is not there, tex complains
> 
> ! I can't write on file ....
> 
> Please type another output file name:
> 
>   Is there a way I can ask tex to create a directory if one does not 
> exist?

Not with TeX, but you can use \write18 or \installprogram  to run a
system command.

Taco

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Create a directory using tex
  2006-08-29  7:13 ` Taco Hoekwater
@ 2006-08-30  1:09   ` Aditya Mahajan
  2006-08-30  6:45     ` Taco Hoekwater
  2006-08-30  7:30     ` Hans Hagen
  0 siblings, 2 replies; 7+ messages in thread
From: Aditya Mahajan @ 2006-08-30  1:09 UTC (permalink / raw)


On Tue, 29 Aug 2006, Taco Hoekwater wrote:

> Aditya Mahajan wrote:
>> Hi,
>>
>>   I want to create a macro that writes files in a sub directory.
>> If the directory is already created, things work fine. However, if the
>> directory is not there, tex complains
>>
>> ! I can't write on file ....
>>
>> Please type another output file name:
>>
>>   Is there a way I can ask tex to create a directory if one does not
>> exist?
>
> Not with TeX, but you can use \write18 or \installprogram  to run a
> system command.

Can I ask TeX to check if a directory exists or is writable. I want it 
to give an informative message if the directory does not exist.

Or is there a way to check if a file is writable, so that I can do

\doiffilewritable{dir/tempfile}{\donothing}{\message{Warning}{Please 
create directory 'dir' \endinput}

Aditya

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Create a directory using tex
  2006-08-30  1:09   ` Aditya Mahajan
@ 2006-08-30  6:45     ` Taco Hoekwater
  2006-08-30  7:39       ` Hans Hagen
  2006-08-30  7:30     ` Hans Hagen
  1 sibling, 1 reply; 7+ messages in thread
From: Taco Hoekwater @ 2006-08-30  6:45 UTC (permalink / raw)


Aditya Mahajan wrote:
> Can I ask TeX to check if a directory exists or is writable.

I do not think so.

And on second thought: not even \write18 will work always, because
whether or not TeX can write a file (in a subdir or even in the
local directory) depends in part on settings in texmf.cnf that
are not visible outside TeX.

Cheers, Taco

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Create a directory using tex
  2006-08-30  1:09   ` Aditya Mahajan
  2006-08-30  6:45     ` Taco Hoekwater
@ 2006-08-30  7:30     ` Hans Hagen
  2006-08-30 13:23       ` Aditya Mahajan
  1 sibling, 1 reply; 7+ messages in thread
From: Hans Hagen @ 2006-08-30  7:30 UTC (permalink / raw)


Aditya Mahajan wrote:
> On Tue, 29 Aug 2006, Taco Hoekwater wrote:
>
>   
>> Aditya Mahajan wrote:
>>     
>>> Hi,
>>>
>>>   I want to create a macro that writes files in a sub directory.
>>> If the directory is already created, things work fine. However, if the
>>> directory is not there, tex complains
>>>
>>> ! I can't write on file ....
>>>
>>> Please type another output file name:
>>>
>>>   Is there a way I can ask tex to create a directory if one does not
>>> exist?
>>>       
>> Not with TeX, but you can use \write18 or \installprogram  to run a
>> system command.
>>     
>
> Can I ask TeX to check if a directory exists or is writable. I want it 
> to give an informative message if the directory does not exist.
>
> Or is there a way to check if a file is writable, so that I can do
>
> \doiffilewritable{dir/tempfile}{\donothing}{\message{Warning}{Please 
> create directory 'dir' \endinput}
>
>   
for a while there has been a way to ask for file characteristics 
(x-dir-01 can be used to generate a clickable listing and x-dir-05 for 
indentifying files)

permissions were not part of that but easy to add, i'm generating you a 
beta that has permissions added

\usemodule[x][dir-05]

\getfilestate{context.tex}

\doifinstringelse{w}{\getvariable{filestate}{permissions}}
  {writable}
  {not writable}


\end



-----------------------------------------------------------------
                                          Hans Hagen | PRAGMA ADE
              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                             | www.pragma-pod.nl
-----------------------------------------------------------------

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Create a directory using tex
  2006-08-30  6:45     ` Taco Hoekwater
@ 2006-08-30  7:39       ` Hans Hagen
  0 siblings, 0 replies; 7+ messages in thread
From: Hans Hagen @ 2006-08-30  7:39 UTC (permalink / raw)


Taco Hoekwater wrote:
> Aditya Mahajan wrote:
>   
>> Can I ask TeX to check if a directory exists or is writable.
>>     
>
> I do not think so.
>
> And on second thought: not even \write18 will work always, because
> whether or not TeX can write a file (in a subdir or even in the
> local directory) depends in part on settings in texmf.cnf that
> are not visible outside TeX.
>   
if this is part of a project thing, you can use ctx files to add pre/post stuff like checking files, converting files, in this case making directories, etc 

Hans 

-----------------------------------------------------------------
                                          Hans Hagen | PRAGMA ADE
              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                             | www.pragma-pod.nl
-----------------------------------------------------------------

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Create a directory using tex
  2006-08-30  7:30     ` Hans Hagen
@ 2006-08-30 13:23       ` Aditya Mahajan
  0 siblings, 0 replies; 7+ messages in thread
From: Aditya Mahajan @ 2006-08-30 13:23 UTC (permalink / raw)


On Wed, 30 Aug 2006, Hans Hagen wrote:

> Aditya Mahajan wrote:
>> On Tue, 29 Aug 2006, Taco Hoekwater wrote:
>>
>>
>>> Aditya Mahajan wrote:
>>>
>>>> Hi,
>>>>
>>>>   I want to create a macro that writes files in a sub directory.
>>>> If the directory is already created, things work fine. However, if the
>>>> directory is not there, tex complains
>>>>
>>>> ! I can't write on file ....
>>>>
>>>> Please type another output file name:
>>>>
>>>>   Is there a way I can ask tex to create a directory if one does not
>>>> exist?
>>>>
>>> Not with TeX, but you can use \write18 or \installprogram  to run a
>>> system command.
>>>
>>
>> Can I ask TeX to check if a directory exists or is writable. I want it
>> to give an informative message if the directory does not exist.
>>
>> Or is there a way to check if a file is writable, so that I can do
>>
>> \doiffilewritable{dir/tempfile}{\donothing}{\message{Warning}{Please
>> create directory 'dir' \endinput}
>>
>>
> for a while there has been a way to ask for file characteristics
> (x-dir-01 can be used to generate a clickable listing and x-dir-05 for
> indentifying files)
>
> permissions were not part of that but easy to add, i'm generating you a
> beta that has permissions added

Thank you. I will play around with this and ctx preprocessing.

Aditya

> \usemodule[x][dir-05]
>
> \getfilestate{context.tex}
>
> \doifinstringelse{w}{\getvariable{filestate}{permissions}}
>  {writable}
>  {not writable}
>
>
> \end
>
>
>
> -----------------------------------------------------------------
>                                          Hans Hagen | PRAGMA ADE
>              Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
>     tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
>                                             | www.pragma-pod.nl
> -----------------------------------------------------------------
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
>
>
>

-- 
Aditya Mahajan, EECS Systems, University of Michigan
http://www.eecs.umich.edu/~adityam || Ph: 7342624008

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-08-30 13:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-08-29  5:30 Create a directory using tex Aditya Mahajan
2006-08-29  7:13 ` Taco Hoekwater
2006-08-30  1:09   ` Aditya Mahajan
2006-08-30  6:45     ` Taco Hoekwater
2006-08-30  7:39       ` Hans Hagen
2006-08-30  7:30     ` Hans Hagen
2006-08-30 13:23       ` Aditya Mahajan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).