Need Information of handling RawFilebody

I have script as below

object GlobalLogin {
val globallogin =group(“Global Login”){feed(loginUserFeeder)
.exec(http(“GlobalLogin”)
.post("/mxPortalUI/j_spring_security_check")
.headers(headers_0)
.formParam(“j_username”, “${UserName}”)
.formParam(“j_password”, “password”)
.check(css(“input[id=‘csrfToken’]”, “value”).find.saveAs(“CSRFTOKEN”))
.check(css(“input[id=‘csrfParam’]”, “value”).find.saveAs(“CSRFPARAM”))
.resources(http(“request_1”)
.get(uri1 + “/adminHome.vw?csrfToken=${CSRFTOKEN}&csrfParam=${CSRFPARAM}”)
.headers(headers_0),
http(“request_2”)
.get(uri1 + “/blankPage.vw?csrfToken=${CSRFTOKEN}&csrfParam=${CSRFPARAM}”)
.headers(headers_0),
http(“request_3”)
.post(uri1 + “/ajax/getAdminToolsMenu”)
.headers(headers_3)
.body(RawFileBody(“MasterDataManagement161_0003_request.txt”)),

So if open “MasterDataManagement161_0003_request.txt” from bodies folder i see below thing.

{
“data”: {},
“info”: {}
}

when i record a scenario from gatling, for a adding record to module, some 20 files of same type generated.

1.How to handle this?
2.Do we really require these files?

Think if i want to run same scenarios in my remote server, along with scripts, i need to copy body file also ,else some request will fail? do we really require this?

Please help me on this