|
SandipG wrote: Check this AT Commands[^]. Use hyperterminal to test these AT Commands
AT command is usefull only when you have list AT command set for hardware.
also, AT command is hardware dependent! and i doubt samsung will share it at command set with public!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
ThatsAlok i doubt samsung will share it at command set with public!
I worked with Nokia handset and Nokia shares the At Commands set.
ThatsAlok AT command is usefull only when you have list AT command set for hardware.
also, AT command is hardware dependent!
Yes. But i think common AT Commands would be same.
If you monitor PC Suite softwares those come with mobiles i have seen them communicating using AT commands.
Regards,
Sandip.
|
|
|
|
|
SandipG wrote: I worked with Nokia handset and Nokia shares the At Commands set.
I have worked with AVL Hardware ( Pollution Meter, Oil Meter etc) and horiba Hardware. they provide you manual of AT command for programmaticaly controling there hardware and no two command is similiar except turning on and off command.
SandipG wrote: Yes. But i think common AT Commands would be same.
If you monitor PC Suite softwares those come with mobiles i have seen them communicating using AT commands.
Thats i need to look into! can you tell me where to look for nokia!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
ThatsAlok can you tell me where to look for nokia!
For Nokia see here[^]
Regards,
Sandip.
|
|
|
|
|
Thanks dude! would add that link to my site!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
modified on Friday, May 22, 2009 5:38 AM
|
|
|
|
|
ThatsAlok Thanks dude!
Welcome
Regards,
Sandip.
|
|
|
|
|
search for Samsung sdk, it will easier to do then using AT COMMAND!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
I need to check whether a directory is accessible or not.
Can I have a code snippet for this.
Thanks.
|
|
|
|
|
V.K 2009 wrote: I need to check whether a directory is accessible or not.
Are you talking about the directory being a shared resource? See for NetShareGetInfo
V.K 2009 wrote: Can I have a code snippet for this.
if you are seeking information on permissions of the directory you can have a look at WIN32_FIND_DATA structure.
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
Are you wanting to know if a directory exists or not? In that case, you could use BOOL PathIsDirectory()[^]
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
I need to check whether directory is accessible or not.
|
|
|
|
|
So is the directory a shared network resource!
What do you mean by accessible or not!
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
The directory can be a shared resource or it can be just in local machine. I need to check whether it is accessible or not.
|
|
|
|
|
Well, why do you think that a directory, if exists will not be 'accessible'? Your query makes no sense at all.
Or you're probably talking about writing into something like "Program Files", on Vista? That will need your application to be run with administrative privileges.
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Do you mean to check whether a directory is locked for access by some other software and still you intend to do some operations in it like copying files etc?
For a shared resource I gave you the API to be used.
You need to google first, if you have "It's urgent please" mentioned in your question.
_AnShUmAn_
|
|
|
|
|
Ya something like you mentioned "Do you mean to check whether a directory is locked for access by some other software and still you intend to do some operations in it like copying files etc?"
|
|
|
|
|
V.K 2009 wrote: Ya something like you mentioned
'Something' like that? So, you don't know it for yourself. If you can't tell what *exactly* you need, you will get no help. Besides all, you are just wasting others time with your silly posts.
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Rajesh R Subramanian wrote: 'Something' like that?
May be requirement is not clear. He might be developing first and gathering requirement later!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
That's the funniest thing I've heard in a while. Thanks for the humor.
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Rajesh R Subramanian wrote: That's the funniest thing I've heard in a while. Thanks for the humor
No, thats true, almost half application which never see light of day is due to fact requirement isnot clear or application is developed just on assumption and actual requirement is quite different
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow Never mind - my own stupidity is the source of every "problem" - Mixture
cheers,
Alok Gupta
VC Forum Q&A :- I/ IV
Support CRY- Child Relief and You
|
|
|
|
|
Use _stat[^]. It will fail if you can't access the directory.
Of course, it fails if the path you give it a) ends in a \, or b) is a UNC path - but I'm sure you can work around those issues.
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Try GetFileAttributes().
Beyond that, you can jump through hoops using security attributes or you could just create a temporary file using the DELETE_ON_CLOSE flag to ensure it goes away.
Anyone who thinks he has a better idea of what's good for people than people do is a swine.
- P.J. O'Rourke
|
|
|
|
|
How can i write an application that can "copy" all files from an NTFS volume, without permissions.
I need this to backup an NTFS partition.
Please help!
Thanks
~Salil
|
|
|
|
|
Member 4431097 wrote: How can i write an application that can "copy" all files from an NTFS volume
Read point #2 in this post[^]
It is a crappy thing, but it's life -^ Carlo Pallini
|
|
|
|
|
Ok, I have an application running off a linux live CD, now this will access the partition in which windows is installed (NTFS) Now, when i try to access the "Documents and Settings" folder, i cannot do it because the NTFS partition permissions do not allow me to get access to it. How do I bypass this, I need to access the file, (Only copy it not necessarily use it!)
Please tell me if you need any more information!
Thank You
~Salil
|
|
|
|