| From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] | Subject: Re: [NET] empty result with listFiles () method whereas I should | get files | | Indeed, but that mean that I would have to put in my code something like | "for this server, use this format", whereas any other server use the same | format. And if tomorrow I have to work with a new server, I would have to | add another case for the new server if its date format setting is not the | usual one.
Why not simply store the date format with the rest of the server info (I'm assuming you have the server name/address, login and password stored somewhere)? Then have a simple check to see if the date format is non-null, and set it if so. This way you incorporate the special case into the general case, and yet you don't have to do any extra work (like set the date format if it's the default). --- Tracy Nelson / Nelnet Business Solutions 402 / 617-9449 The information contained in this message is confidential proprietary property of FACTS/Nelnet Business Solutions. Any reproduction, forwarding, or copying without the express permission of FACTS/Nelnet Business Solutions is strictly prohibited. If you have received this communication in error, please notify us immediately by replying to this e-mail. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
