Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8999423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T00:10:42+00:00 2026-06-16T00:10:42+00:00

i am trying to delete a file from my FTP website but i cannot

  • 0

i am trying to delete a file from my FTP website but i cannot seem to get the code to work could anyone help?, i get no error’s it just doesn’t do anything.

private FtpWebRequest deleteRequest(string uri, string method)
{
    var r = (FtpWebRequest)WebRequest.Create(uri);
    string Delete = WebRequestMethods.Ftp.DeleteFile;

    r.Credentials = new NetworkCredential(TxtUsername.Text, TxtPassword.Text);
    r.Method = Delete = listView1.SelectedItems.ToString();
    return r;
}

The rest of the code.

    private void openToolStripMenuItem_Click(object sender, EventArgs e)
    {
        textBox1.Text = TxtServer.Text + listView1.SelectedItems.ToString();
        deleteRequest(textBox1.Text, WebRequestMethods.Ftp.DeleteFile);
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T00:10:42+00:00Added an answer on June 16, 2026 at 12:10 am

    This is the code i ended up using thank you all for the help really appreciate it.

    private void deleteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ResultLabel.Text = "Deleting: " + listView1.SelectedItems[0].Text;
            ResultLabel.Show();
            this.Refresh();
            textBox1.Text = TxtServer.Text + listView1.SelectedItems[0].Text;
            FtpWebRequest request = (FtpWebRequest)WebRequest.Create(textBox1.Text);
            request.Method = WebRequestMethods.Ftp.DeleteFile;
    
            request.Credentials = new NetworkCredential(TxtUsername.Text, TxtPassword.Text);
            FtpWebResponse response = (FtpWebResponse)request.GetResponse();
            ResultLabel.Text = "Deleted: " + listView1.SelectedItems[0].Text;
            response.Close();
        }
    

    I just fully rewrote the code and tried again and it worked.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to delete a file from an FTP server in my shell scrip
I want to delete file from my program. Trying to use this function but
I'm trying to delete my files folder from Internal Storage, but the code which
I'm trying to delete certain lines from a file. My file is a .txt
I'm trying to delete a specific line by id from a file in C++
I'm trying to delete a Image file in WPF, but WPF locks the file.
I'm trying to write a file from my Java program, but nothing happens. I'm
In Java I'm trying to delete a ftp directory. But if it's not empty,
I use following code to delete old image from ftp... unlink(getcwd() . '/images/' .
I am trying to delete file from the document directory by use of commitEditingStyle

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.