Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Adding and deleting Scheduled Tasks using NetScheduleJob API functions
Custom GDI+ class
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Converting Unicode data from the Clipboard to a character string using a given code page
Winsock: sending email messages (SMTP, port 25)
Custom FTP Class for Visual FoxPro application
Enumerating data formats currently available on the clipboard
Splash Screen for the VFP application
How to download a file from the FTP server using FtpGetFile
How to activate Windows Calculator
Detecting changes in connections to removable drives (VFP9)
How to put a vertical text scrolling on the form (a movie cast)
Custom HttpRequest class (WinHTTP)
How to convert a bitmap file to monochrome format (1 bpp)
Using WM_COPYDATA for interprocess communication (VFP9)
Displaying bitmap using the AlphaBlend function
Establishing connection using the SQLDriverConnect
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file
Mapping and disconnecting network drives
Using Font and Text functions
Displaying animated images on FoxPro form with BitBlt and StretchBlt functions
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
How to play AVI file on the _screen
Creating a directory on the FTP

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Versions:
click to open
 
using System;
using System.IO;
using System.Net;
using System.Windows.Forms;
 
namespace ConsoleApplication1
{
    partial class Program
    {
 
        //usage: CreateRemoteDirectory("ftp://myftp.com", 
        //          "anonymous", "myemail@mydomain.com",
        //          "newfolder")
 
        static void CreateRemoteDirectory(string remotePath, 
            string userName, string password, string newFolder)
        {
 
            FtpWebRequest request = (FtpWebRequest)
                FtpWebRequest.Create(remotePath + "/" + newFolder);
 
            request.Credentials = new NetworkCredential(
                userName, password);
 
            request.Method =
                WebRequestMethods.Ftp.MakeDirectory;
 
            try
            {
                FtpWebResponse response = (FtpWebResponse)
                    request.GetResponse();
 
            }
            catch (WebException ex)
            {
                MessageBox.Show(ex.Message, 
                    ex.GetType().ToString());
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message,
                    ex.GetType().ToString());
            }
 
        }
    }
 
}
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
1248 bytes  
Created: 2001-07-17 12:00:00  
Modified: 2008-10-03 15:25:57  
Visits in 7 days: 104  
Listed functions:
FtpCreateDirectory
InternetCloseHandle
InternetConnect
InternetOpen
Printer friendly API declarations
My comment:


#kwd: sln_ftp.
Word Index links for this example:
Translate this page:
  Spanish    Portuguese    German    French    Italian  
FreeTranslation.com offers instant, free translations of text or web pages.
User Contributed Notes:
There are no notes on this subject.


Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

Privacy policy
Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
Last Topics Visited (50.19.155.235)
3.66 hrs.Function: 'GetProductInfo'
 Example: 'How to play a waveform sound (a WAV file in particular)'
3.79 hrs.Example: 'Placing an arbitrary rectangular area of main VFP window on the Clipboard'
 Function: 'NetShareDel'
Function group: 'Network Management'
5 hrs.Example: 'Setting the last-error code for the FoxPro'
 Example: 'Copying strings through the global memory block'
 Example: 'Open and close a Simple MAPI Session'
5.16 hrs.Function: 'CryptGetProvParam'
Function group: 'Cryptography Reference'
 Function: 'PathGetDriveNumber'
Function group: 'Shell Lightweight Utility APIs -- Path Functions'
9.79 hrs.Function: 'CloseHandle'
Google
Advertise here!