473,382 Members | 1,445 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

FTP

Is is possible to use WinInet in vb.net 2003 to download files from an FTP server? I've
been asked to rewrite some VB6 code as a service that downloads files then parses and
reformats them. The parsing and formatting was easy but the FTP stuff has me stuck.
FtpFindFirstFile() doesn't return the name of the file in the WIN32_FIND_DATA structure so
I can't get a list of the files on the server. Has anyone used WinInet before for FTP?
Is this doable in .net or do I need to use System.Net and System.Net.Sockets?

Thanks,

Jim Edgar
Nov 21 '05 #1
6 4771
Try this article "How to access a File Transfer Protocol site by using
Visual Basic .NET"

http://support.microsoft.com/default...b;EN-US;832679

"Jim Edgar" <dj***********@cox.net> wrote in message
news:uQ**************@TK2MSFTNGP11.phx.gbl...
Is is possible to use WinInet in vb.net 2003 to download files from an FTP
server? I've
been asked to rewrite some VB6 code as a service that downloads files then
parses and
reformats them. The parsing and formatting was easy but the FTP stuff has
me stuck.
FtpFindFirstFile() doesn't return the name of the file in the
WIN32_FIND_DATA structure so
I can't get a list of the files on the server. Has anyone used WinInet
before for FTP?
Is this doable in .net or do I need to use System.Net and
System.Net.Sockets?

Thanks,

Jim Edgar

Nov 21 '05 #2
Thanks Altman. I had found that link on google and I'm probably going to tackle it if
WinInet isn't a choice.

Jim Edgar

"Altman" <No******@SickOfSpam.com> wrote in message
news:ej**************@TK2MSFTNGP09.phx.gbl...
Try this article "How to access a File Transfer Protocol site by using
Visual Basic .NET"

http://support.microsoft.com/default...b;EN-US;832679

"Jim Edgar" <dj***********@cox.net> wrote in message
news:uQ**************@TK2MSFTNGP11.phx.gbl...
Is is possible to use WinInet in vb.net 2003 to download files from an FTP
server? I've
been asked to rewrite some VB6 code as a service that downloads files then
parses and
reformats them. The parsing and formatting was easy but the FTP stuff has
me stuck.
FtpFindFirstFile() doesn't return the name of the file in the
WIN32_FIND_DATA structure so
I can't get a list of the files on the server. Has anyone used WinInet
before for FTP?
Is this doable in .net or do I need to use System.Net and
System.Net.Sockets?

Thanks,

Jim Edgar


Nov 21 '05 #3
In article <uQ**************@TK2MSFTNGP11.phx.gbl>, Jim Edgar wrote:
Is is possible to use WinInet in vb.net 2003 to download files from an FTP server? I've
been asked to rewrite some VB6 code as a service that downloads files then parses and
reformats them. The parsing and formatting was easy but the FTP stuff has me stuck.
FtpFindFirstFile() doesn't return the name of the file in the WIN32_FIND_DATA structure so
I can't get a list of the files on the server. Has anyone used WinInet before for FTP?
Is this doable in .net or do I need to use System.Net and System.Net.Sockets?

Thanks,

Jim Edgar


Yes it's possible... I haven't really done it from VB.NET - but I have
a whole class written in C# that does it. The code should convert to
VB.NET fairly easily, and can be used from a separate library as is...

Anyway, here is my declarations from that libary, with a little main
function that does what you're asking - it seems to work here any way (I
tested this against an SCO Unix server and a FreeBSD server)...

using System;
using System.Text;
using System.Runtime.InteropServices;

namespace Testing
{
/// <summary>
/// Summary description for WinInet.
/// </summary>
public sealed class WinInet
{
public const int INTERNET_OPEN_TYPE_PRECONFIG = 0;
public const int INTERNET_OPEN_TYPE_DIRECT = 1;
public const int INTERNET_OPEN_TYPE_PROXY = 3;
public const short INTERNET_DEFAULT_FTP_PORT = 21;
public const int INTERNET_SERVICE_FTP = 1;
public const int FTP_TRANSFER_TYPE_ASCII = 0x01;
public const int FTP_TRANSFER_TYPE_BINARY = 0x02;
public const int GENERIC_WRITE = 0x40000000;
public const int GENERIC_READ = unchecked((int)0x80000000);
public const int MAX_PATH = 260;
public const int INTERNET_FLAG_NEED_FILE = 0x00000010;

[StructLayout (LayoutKind.Sequential)]
public struct FILETIME
{
public int dwLowDateTime;
public int dwHighDateTime;
}

[StructLayout (LayoutKind.Sequential, CharSet=CharSet.Auto)]
public struct WIN32_FIND_DATA
{
public int dwFileAttributes;
public FILETIME ftCreationTime;
public FILETIME ftLastAccessTime;
public FILETIME ftLastWriteTime;
public int nFileSizeHigh;
public int nFileSizeLow;
public int dwReserved0;
public int dwReserved1;

[MarshalAs (UnmanagedType.ByValTStr, SizeConst=MAX_PATH)]
public string cFileName;

[MarshalAs (UnmanagedType.ByValTStr, SizeConst=14)]
public string cAlternateFileName;
}

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern IntPtr InternetOpen(
string lpszAgent,
int dwAcessType,
string lpszProxyName,
string lpszProxyBypass,
int dwFlags);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern IntPtr InternetConnect(
IntPtr hInternet,
string lpszServerName,
short nServerPort,
string lpszUserName,
string lpszPassword,
int dwService,
int dwFlags,
ref int dwContext);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpGetCurrentDirectory(
IntPtr hConnect,
StringBuilder lpszCurrentDirectory,
ref int lpdwCurrentDirectory);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpSetCurrentDirectory(
IntPtr hConnect,
string lpszCurrentDirectory);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern IntPtr FtpOpenFile(
IntPtr hConnect,
string lpszFileName,
int dwAccess,
int dwFlags,
out int dwContext);

[DllImport("wininet.dll", SetLastError=true)]
public static extern bool InternetWriteFile(
IntPtr hFile,
[MarshalAs(UnmanagedType.LPArray)] byte[] lpBuffer,
int dwNumberOfBytesToWrite,
out int lpdwNumberOfBytesWritten);

[DllImport("wininet.dll", SetLastError=true)]
public static extern bool InternetReadFile(
IntPtr hFile,
[MarshalAs(UnmanagedType.LPArray)] byte[] lpBuffer,
int dwNumberOfBytesToRead,
out int lpdwNumberOfBytesRead
);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool InternetCloseHandle(IntPtr hInternet);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpPutFile (
IntPtr hConnect,
string lpszLocalFile,
string lpszNewRemoteFile,
int dwFlags,
out int dwContext);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpGetFile (
IntPtr hConnect,
string lpszRemoteFile,
string lpszLocalFile,
bool failIfExists,
int dwFlagsAttributes,
int dwFlags,
out int dwContext);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpCreateDirectory(
IntPtr hConnect,
string lpszDirectory);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern IntPtr FtpFindFirstFile(
IntPtr hConnect,
string lpszSearchFile,
out WIN32_FIND_DATA lpFindFileData,
int dwFlags,
out int dwContext);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool InternetFindNextFile(
IntPtr hFind,
out WIN32_FIND_DATA lpvFindData
);

[STAThread ()]
public static void Main ()
{
int context = 0;
IntPtr hInternet = InternetOpen (null,
INTERNET_OPEN_TYPE_DIRECT, null, null, 0);
IntPtr hConnection = InternetConnect (
hInternet,
"zorkmid.dakcs.com",
INTERNET_DEFAULT_FTP_PORT,
"tom",
"vws4ever",
INTERNET_SERVICE_FTP,
0,
ref context);

WIN32_FIND_DATA findData;
IntPtr hFind = FtpFindFirstFile (
hConnection,
"*",
out findData,
INTERNET_FLAG_NEED_FILE,
out context
);
Console.WriteLine (findData.cFileName);
while (InternetFindNextFile (hFind, out findData))
{
Console.WriteLine (findData.cFileName);
}
InternetCloseHandle (hFind);
InternetCloseHandle (hConnection);
InternetCloseHandle (hInternet);
}
}
}

HTH
--
Tom Shelton [MVP]
OS Name: Microsoft Windows XP Professional
OS Version: 5.1.2600 Service Pack 2 Build 2600
System Up Time: 0 Days, 4 Hours, 36 Minutes, 58 Seconds
Nov 21 '05 #4
"Jim Edgar" <dj***********@cox.net> schrieb:
Is is possible to use WinInet in vb.net 2003 to download files from an FTP
server?


In addition to the other replies:

Accessing FTP servers in .NET applications
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=ftp&lang=en>

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Nov 21 '05 #5
Thanks Tom --

I've never used .net before so translating some of the code is hit and miss. Here's
my current configuration of WIN32_FIND_DATA

Public Structure WIN32_FIND_DATA
Dim dwFileAttributes As Integer
Dim ftCreationTime As FILETIME
Dim ftLastAccessTime As FILETIME
Dim ftLastWriteTime As FILETIME
Dim nFileSizeHigh As Integer
Dim nFileSizeLow As Integer
Dim dwReserved0 As Integer
Dim dwReserved1 As Integer
<VBFixedString(260)> Public cFileName As String
<VBFixedString(14)> Public cAlternate As String
End Structure

I've also tried

Public Structure WIN32_FIND_DATA
Dim dwFileAttributes As Integer
Dim ftCreationTime As FILETIME
Dim ftLastAccessTime As FILETIME
Dim ftLastWriteTime As FILETIME
Dim nFileSizeHigh As Integer
Dim nFileSizeLow As Integer
Dim dwReserved0 As Integer
Dim dwReserved1 As Integer
<VBFixedString(260),
System.Runtime.InteropServices.MarshalAs(System.Ru ntime.InteropServices.UnmanagedType.ByVa
lTStr, SizeConst:=260)> Public cFileName As String
<VBFixedString(14),
System.Runtime.InteropServices.MarshalAs(System.Ru ntime.InteropServices.UnmanagedType.ByVa
lTStr, SizeConst:=14)> Public cAlternate As String
End Structure

Which one should I use with WinInet or is there a better way
to declare fixed length strings in structures?

Thanks,
Jim Edgar

"Tom Shelton" <to*@YOUKNOWTHEDRILLmtogden.com> wrote in message
news:uC**************@TK2MSFTNGP14.phx.gbl...
In article <uQ**************@TK2MSFTNGP11.phx.gbl>, Jim Edgar wrote:
Is is possible to use WinInet in vb.net 2003 to download files from an FTP server? I've been asked to rewrite some VB6 code as a service that downloads files then parses and
reformats them. The parsing and formatting was easy but the FTP stuff has me stuck.
FtpFindFirstFile() doesn't return the name of the file in the WIN32_FIND_DATA structure so I can't get a list of the files on the server. Has anyone used WinInet before for FTP? Is this doable in .net or do I need to use System.Net and System.Net.Sockets?

Thanks,

Jim Edgar


Yes it's possible... I haven't really done it from VB.NET - but I have
a whole class written in C# that does it. The code should convert to
VB.NET fairly easily, and can be used from a separate library as is...

Anyway, here is my declarations from that libary, with a little main
function that does what you're asking - it seems to work here any way (I
tested this against an SCO Unix server and a FreeBSD server)...

using System;
using System.Text;
using System.Runtime.InteropServices;

namespace Testing
{
/// <summary>
/// Summary description for WinInet.
/// </summary>
public sealed class WinInet
{
public const int INTERNET_OPEN_TYPE_PRECONFIG = 0;
public const int INTERNET_OPEN_TYPE_DIRECT = 1;
public const int INTERNET_OPEN_TYPE_PROXY = 3;
public const short INTERNET_DEFAULT_FTP_PORT = 21;
public const int INTERNET_SERVICE_FTP = 1;
public const int FTP_TRANSFER_TYPE_ASCII = 0x01;
public const int FTP_TRANSFER_TYPE_BINARY = 0x02;
public const int GENERIC_WRITE = 0x40000000;
public const int GENERIC_READ = unchecked((int)0x80000000);
public const int MAX_PATH = 260;
public const int INTERNET_FLAG_NEED_FILE = 0x00000010;

[StructLayout (LayoutKind.Sequential)]
public struct FILETIME
{
public int dwLowDateTime;
public int dwHighDateTime;
}

[StructLayout (LayoutKind.Sequential, CharSet=CharSet.Auto)]
public struct WIN32_FIND_DATA
{
public int dwFileAttributes;
public FILETIME ftCreationTime;
public FILETIME ftLastAccessTime;
public FILETIME ftLastWriteTime;
public int nFileSizeHigh;
public int nFileSizeLow;
public int dwReserved0;
public int dwReserved1;

[MarshalAs (UnmanagedType.ByValTStr, SizeConst=MAX_PATH)]
public string cFileName;

[MarshalAs (UnmanagedType.ByValTStr, SizeConst=14)]
public string cAlternateFileName;
}

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern IntPtr InternetOpen(
string lpszAgent,
int dwAcessType,
string lpszProxyName,
string lpszProxyBypass,
int dwFlags);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern IntPtr InternetConnect(
IntPtr hInternet,
string lpszServerName,
short nServerPort,
string lpszUserName,
string lpszPassword,
int dwService,
int dwFlags,
ref int dwContext);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpGetCurrentDirectory(
IntPtr hConnect,
StringBuilder lpszCurrentDirectory,
ref int lpdwCurrentDirectory);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpSetCurrentDirectory(
IntPtr hConnect,
string lpszCurrentDirectory);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern IntPtr FtpOpenFile(
IntPtr hConnect,
string lpszFileName,
int dwAccess,
int dwFlags,
out int dwContext);

[DllImport("wininet.dll", SetLastError=true)]
public static extern bool InternetWriteFile(
IntPtr hFile,
[MarshalAs(UnmanagedType.LPArray)] byte[] lpBuffer,
int dwNumberOfBytesToWrite,
out int lpdwNumberOfBytesWritten);

[DllImport("wininet.dll", SetLastError=true)]
public static extern bool InternetReadFile(
IntPtr hFile,
[MarshalAs(UnmanagedType.LPArray)] byte[] lpBuffer,
int dwNumberOfBytesToRead,
out int lpdwNumberOfBytesRead
);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool InternetCloseHandle(IntPtr hInternet);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpPutFile (
IntPtr hConnect,
string lpszLocalFile,
string lpszNewRemoteFile,
int dwFlags,
out int dwContext);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpGetFile (
IntPtr hConnect,
string lpszRemoteFile,
string lpszLocalFile,
bool failIfExists,
int dwFlagsAttributes,
int dwFlags,
out int dwContext);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool FtpCreateDirectory(
IntPtr hConnect,
string lpszDirectory);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern IntPtr FtpFindFirstFile(
IntPtr hConnect,
string lpszSearchFile,
out WIN32_FIND_DATA lpFindFileData,
int dwFlags,
out int dwContext);

[DllImport("wininet.dll", CharSet=CharSet.Auto,
SetLastError=true)]
public static extern bool InternetFindNextFile(
IntPtr hFind,
out WIN32_FIND_DATA lpvFindData
);

[STAThread ()]
public static void Main ()
{
int context = 0;
IntPtr hInternet = InternetOpen (null,
INTERNET_OPEN_TYPE_DIRECT, null, null, 0);
IntPtr hConnection = InternetConnect (
hInternet,
"zorkmid.dakcs.com",
INTERNET_DEFAULT_FTP_PORT,
"tom",
"vws4ever",
INTERNET_SERVICE_FTP,
0,
ref context);

WIN32_FIND_DATA findData;
IntPtr hFind = FtpFindFirstFile (
hConnection,
"*",
out findData,
INTERNET_FLAG_NEED_FILE,
out context
);
Console.WriteLine (findData.cFileName);
while (InternetFindNextFile (hFind, out findData))
{
Console.WriteLine (findData.cFileName);
}
InternetCloseHandle (hFind);
InternetCloseHandle (hConnection);
InternetCloseHandle (hInternet);
}
}
}

HTH
--
Tom Shelton [MVP]
OS Name: Microsoft Windows XP Professional
OS Version: 5.1.2600 Service Pack 2 Build 2600
System Up Time: 0 Days, 4 Hours, 36 Minutes, 58 Seconds

Nov 21 '05 #6
On 2004-12-15, Jim Edgar <dj***********@cox.net> wrote:
Thanks Tom --

I've never used .net before so translating some of the code is hit and miss. Here's
my current configuration of WIN32_FIND_DATA

Public Structure WIN32_FIND_DATA
Dim dwFileAttributes As Integer
Dim ftCreationTime As FILETIME
Dim ftLastAccessTime As FILETIME
Dim ftLastWriteTime As FILETIME
Dim nFileSizeHigh As Integer
Dim nFileSizeLow As Integer
Dim dwReserved0 As Integer
Dim dwReserved1 As Integer
<VBFixedString(260)> Public cFileName As String
<VBFixedString(14)> Public cAlternate As String
End Structure

I've also tried

Public Structure WIN32_FIND_DATA
Dim dwFileAttributes As Integer
Dim ftCreationTime As FILETIME
Dim ftLastAccessTime As FILETIME
Dim ftLastWriteTime As FILETIME
Dim nFileSizeHigh As Integer
Dim nFileSizeLow As Integer
Dim dwReserved0 As Integer
Dim dwReserved1 As Integer
<VBFixedString(260),
System.Runtime.InteropServices.MarshalAs(System.Ru ntime.InteropServices.UnmanagedType.ByVa
lTStr, SizeConst:=260)> Public cFileName As String
<VBFixedString(14),
System.Runtime.InteropServices.MarshalAs(System.Ru ntime.InteropServices.UnmanagedType.ByVa
lTStr, SizeConst:=14)> Public cAlternate As String
End Structure

Which one should I use with WinInet or is there a better way
to declare fixed length strings in structures?


For your WIN32_FIND_DATA structure, try something like:

<StructLayout (LayoutKind.Sequential, CharSet:=CharSet.Auto)> _
Public Structure WIN32_FIND_DATA
Public dwFileAttributes As Integer
Public ftCreationTime As FILETIME
Public ftLastAccessTime As FILETIME
Public ftLastWriteTime As FILETIME
Public nFileSizeHigh As Integer
Public nFileSizeLow As Integer
Public dwReserved0 As Integer
Public dwReserved1 As Integer

<MarshalAs (UnmanagedType.ByValTStr, SizeConst:=260)> _
Public cFileName As String

<MarshalAs (UnmanagedType.ByValTStr, SizeConst:=14)> _
Public cAlternate As String
End Structure
VBFixedString doesn't do anything for you in interop - it is used by the
lame native VB.NET file io methods (which are to be avoided if you care
anything about performance). Also, make sure that you use Auto in the
declaration for the functions that take this structure:

Declare Auto Function FtpFindFirstFile ....

That will make sure the CharSet is set correctly for the function as
well as the structure.

--
Tom Shelton [MVP]
Nov 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.